Skip to content

Instantly share code, notes, and snippets.

@kaw2k
Created January 23, 2016 03:33
Show Gist options
  • Save kaw2k/01d2b44662c12e18739c to your computer and use it in GitHub Desktop.
Save kaw2k/01d2b44662c12e18739c to your computer and use it in GitHub Desktop.
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