Created
July 17, 2015 01:53
-
-
Save yelouafi/07b160fd4c7a493f99ba to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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