Last active
January 23, 2016 03:32
-
-
Save kaw2k/3bce5c7404a6b4a5e9b8 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
[1, 2, 3].map(identity); | |
// [1, 2, 3] | |
listNode(1, listNode(2, listNode(3))).map(identity); | |
// listNode(1, listNode(2, listNode(3))) | |
treeNode(1, treeNode(2), treeNode(3)).map(identity); | |
// treeNode(1, treeNode(2), treeNode(3)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment