-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathPaperExamples.hs
44 lines (31 loc) · 1.06 KB
/
PaperExamples.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
module PaperExamples where
import Prelude hiding (take)
-- Inline data structures, so that this test case
-- works independent of inter-module data flow
data List a = Nil | Cons a (List a)
-- should be a complete pattern match
mapList :: (a -> b) -> List a -> List b
mapList f Nil = Nil
mapList f (Cons x xs) = Cons (f x) (mapList f xs)
uncurry :: (a -> b -> c) -> (a,b) -> c
uncurry f (x,y) = f x y
take :: Int -> [a] -> [a]
take n _ | n <= 0 = []
take _ [] = []
take n (x:xs) = x : take (n-1) xs
fromJust :: Maybe a -> a
fromJust (Just x) = x
takeMapMaybe :: (a -> Maybe b) -> Int -> List a -> List b
takeMapMaybe f n xs | n <= 0 = Nil
takeMapMaybe f n (Cons x xs)
| Just y <- f x = Cons y ys
where ys = takeMapMaybe f (n-1) xs
takeMapMaybe _ _ Nil = Nil
class Pointed a where point :: a
class Pointed a => PointedMagma a where
oper :: a -> a -> a
oper _ _ = point
instance Pointed Bool where point = True
instance Pointed () where point = ()
instance PointedMagma Bool where oper = (&&)
instance PointedMagma ()