Created
January 23, 2016 03:33
-
-
Save kaw2k/01d2b44662c12e18739c 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
function map(transformation, data) { | |
return data.map(transformation); | |
} | |
map(addOne, [1, 2, 3]); | |
map(addOne, listNode(1, listNode(2, listNode(3)))); | |
map(addOne, treeNode(1, treeNode(2), treeNode(3))); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment