-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathch17applicative2.hs
37 lines (27 loc) · 939 Bytes
/
ch17applicative2.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
module Chapter17Applicative2 where
import Test.QuickCheck
import Test.QuickCheck.Checkers
import Test.QuickCheck.Classes
-- Exercise: Variatons on Either (page 750)
data Sum a b = First a | Second b deriving (Eq, Show)
data Validation e a = Error e | Success a deriving (Eq, Show)
instance Functor (Sum a) where
fmap _ (First a) = First a
fmap f (Second b) = Second (f b)
instance Applicative (Sum a) where
pure = Second
(<*>) (First a) _ = First a
(<*>) _ (First a) = First a
(<*>) (Second f) (Second b) = Second (f b)
instance Functor (Validation e) where
fmap _ (Error e) = Error e
fmap f (Success a) = Success (f a)
instance Monoid e => Applicative (Validation e) where
pure = Success
(<*>) (Error e1) (Error e2) = Error (e1 `mappend` e2)
(<*>) (Error e) _ = Error e
(<*>) _ (Error e) = Error e
(<*>) (Success f) (Success a) = Success (f a)
-- TODO: checkes
-- 17.9 Chapter Excercises
-- TODO NEXT