-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunc_app_mono.hs
60 lines (44 loc) · 1.68 KB
/
func_app_mono.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import Control.Applicative
data CMaybe a = CNothing | CJust Int a
deriving (Show, Eq)
instance Functor CMaybe where
fmap f (CJust n x) = CJust (n + 1) (f x)
fmap f CNothing = CNothing
-- (fmap id $ CJust 0 "foo") /= (id CJust 0 "foo")
-- q.e.d. in this form, CMaybe is not a valid functor
---------------------------------------------------------------
data Vielleicht a = Nichts | Einfach a
deriving (Show, Eq)
instance Functor Vielleicht where
fmap f (Einfach x) = Einfach (f x)
fmap f Nichts = Nichts
-- (fmap id $ Einfach "foo") == (id Einfach "foo")
-- (fmap ((+2) . (*5)) (Einfach 2)) == (fmap (+2) (fmap (*5) (Einfach 2)))
-- q.e.d in this form, Vielleicht is a valid functor
instance Applicative Vielleicht where
pure = Einfach
Nichts <*> _ = Nichts
(Einfach f) <*> x = fmap f x
-- (pure (+1) <*> Einfach 1) == (fmap (+1) $ Einfach 1)
instance Monad Vielleicht where
return x = Einfach x
(>>=) (Einfach x) f = f x
(>>=) Nichts _ = Nichts
fail _ = Nichts
---------------------------------------------------------------
sequenceA' :: (Applicative f) => [f a] -> f [a]
sequenceA' [] = pure []
sequenceA' (x:xs) = (:) <$> x <*> sequenceA xs
sequenceA'' :: (Applicative f) => [f a] -> f [a]
sequenceA'' = foldr (liftA2 (:)) (pure [])
---------------------------------------------------------------
newtype CharList = CharList { getCharList :: [Char]}
deriving (Eq, Show)
newtype Pair b a = Pair { getPair :: (a,b) }
deriving (Show)
instance Functor (Pair c) where
fmap f (Pair (x,y)) = Pair (f x, y)
---------------------------------------------------------------
applyMaybe :: Maybe a -> (a -> Maybe b) -> Maybe b
applyMaybe Nothing f = Nothing
applyMaybe (Just x) f = f x