Created
May 30, 2018 14:08
-
-
Save bijancn/537da894e118c04e9a24c532786ad8d0 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
def count(p: A => Boolean): Int | |
def find(p: A => Boolean): Option[A] | |
def filter(p: A => Boolean): List[A] | |
def exists(p: A => Boolean): Boolean | |
def forall(p: A => Boolean): Boolean | |
def contains(elem: A): Boolean |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment