We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b71630 commit e96262aCopy full SHA for e96262a
README.md
@@ -1,11 +1,14 @@
1
-# Data.Maybe
+# Module Documentation
2
+
3
+## Module Data.Maybe
4
5
### Types
6
7
data Maybe a where
8
Nothing :: Maybe a
9
Just :: a -> Maybe a
10
11
12
### Type Class Instances
13
14
instance alternativeMaybe :: Alternative Maybe
@@ -26,6 +29,7 @@
26
29
27
30
instance showMaybe :: (Show a) => Show (Maybe a)
28
31
32
33
### Values
34
35
fromMaybe :: forall a. a -> Maybe a -> a
@@ -34,4 +38,4 @@
38
39
isNothing :: forall a. Maybe a -> Prim.Boolean
36
40
37
- maybe :: forall a b. b -> (a -> b) -> Maybe a -> b
41
+ maybe :: forall a b. b -> (a -> b) -> Maybe a -> b
0 commit comments