Skip to content

Instantly share code, notes, and snippets.

@datchley
Last active August 29, 2015 14:27
Show Gist options
  • Save datchley/4f68ed681e1a6777037b to your computer and use it in GitHub Desktop.
Save datchley/4f68ed681e1a6777037b to your computer and use it in GitHub Desktop.
Idea for a combine(list, list) function for javascript in functional style
['Function','Array'].forEach(function(type) {
var checkFn = 'is'+type;
window[checkFn] = function(o){ return Object.prototype.toString.call(o) == '[object ' + type + ']'; };
});
// Return new list as combination of the two lists passed
// The second list can be a function which will be passed each item
// from the first list and should return an array to permute that item
// with. If either argument is not a list, it will be treated as a list.
//
// Ex., combine([a,b], [c,d]) => [[a,c],[a,d],[b,c],[b,d]]
function combine(list, listFn) {
isArray(list) || (list = [list]);
(isFunction(listFn) || isArray(listFn)) || (listFn = [listFn]);
return flatMapWith(function(itemLeft){
return mapWith(function(itemRight) {
return [itemLeft, itemRight];
})(isFunction(listFn) ? listFn.call(this, itemLeft) : listFn);
})(list);
}
@datchley
Copy link
Author

Pointed out to me on twitter (https://twitter.com/jeffgreenberg/status/634473978455703552) that this isn't really a permutation; because we don't care about order: [a,c] shows up alone and not [a,c],[c,a]. Have modified to use the correct name.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment