map | flatMap | fold | |
---|---|---|---|
Some(x) | Applies function, f, provided as argument to the value x and returns the result wrapped in a Some. | Applies function, f, provided as argument to the value x and returns the result as-is. | Applies function, f, provided as argument to the value x and returns that value |
None | Does nothing | Does nothing | Applies function, ifEmpty, provided as argument and returns that value |
Last active
June 14, 2017 00:03
-
-
Save choonkending/98ddd64309e9d509aa71d67a5c6aaf28 to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment