Created
December 13, 2014 23:50
-
-
Save marcoscastro/3a6fff2e3f0f93383dda to your computer and use it in GitHub Desktop.
Haskell - Função elem
This file contains hidden or 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
pertence :: Eq a => [a] -> a -> Bool | |
pertence lista e = elem e lista |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment