Skip to content

Instantly share code, notes, and snippets.

@kaw2k
Last active January 23, 2016 03:32
Show Gist options
  • Save kaw2k/3bce5c7404a6b4a5e9b8 to your computer and use it in GitHub Desktop.
Save kaw2k/3bce5c7404a6b4a5e9b8 to your computer and use it in GitHub Desktop.
[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