Skip to content

Instantly share code, notes, and snippets.

@jutememo
Created October 28, 2011 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jutememo/1322202 to your computer and use it in GitHub Desktop.
Save jutememo/1322202 to your computer and use it in GitHub Desktop.
data List a = Nil
| Cons a (List a)
deriving Show
xs = Cons 1 (Cons 2 (Cons 3 Nil))
reduceList f z Nil = z
reduceList f z (Cons x xs) = f x (reduceList f z xs)
idList = reduceList Cons Nil
mapList f = reduceList (Cons . f) Nil
filterList p = reduceList (\x xs ->
if p x then Cons x xs
else xs)
Nil
mapListIf p f = reduceList (\x xs ->
if p x then Cons (f x) xs
else Cons x xs)
Nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment