Created
October 27, 2017 12:19
-
-
Save dminuoso/57297b5ddb216cfe216408a4cd946ae9 to your computer and use it in GitHub Desktop.
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
double = -> (e) { e * 2 } | |
doubleF = map double | |
doubleF.([1,2,3,4]) #=> [2,4,6,8] | |
doubleF.([]) #=> [] | |
doubleF.(Just(3)) #=> Just 6 | |
doubleF.(Nothing) #=> Nothing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment