Skip to content

Instantly share code, notes, and snippets.

@yelouafi
Created July 17, 2015 01:53
Show Gist options
  • Save yelouafi/07b160fd4c7a493f99ba to your computer and use it in GitHub Desktop.
Save yelouafi/07b160fd4c7a493f99ba to your computer and use it in GitHub Desktop.
filter :: (a -> Bool) -> [a] -> [a]
filter _pred [] = []
filter pred (x:xs)
| pred x = x : filter pred xs
| otherwise = filter pred xs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment