Created
June 20, 2014 11:32
-
-
Save samgiles/762ee337dff48623e729 to your computer and use it in GitHub Desktop.
Javascript flatMap implementation
This file contains 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
// [B](f: (A) ⇒ [B]): [B] ; Although the types in the arrays aren't strict (: | |
Array.prototype.flatMap = function(lambda) { | |
return Array.prototype.concat.apply([], this.map(lambda)); | |
}; |
For optimization, don't use concat use : push.apply
@Ran-P JSPerf begs to differ, for me at least https://jsperf.com/array-prototype-push-apply-vs-concat/13
@ichpuchtli I like it, but isn't the order of the concatenation backwards?
@dsacramone gets my vote for most concise and readable, tho :)
If you need to work with deeply nested arrays:
const myArray = [[1, 2],[3, [4, [5, 6]]], [7, [8, 9]]];
const flatMapDeep = (value, mapper) => {
return Array.isArray(value) ?
[].concat(...value.map(x => flatMapDeep(x, mapper))) :
mapper(value);
}
const mapper = (x) => x * 11;
const flatArray = flatMapDeep(myArray, mapper); // [11, 22, 33, 44, 55, 66, 77, 88, 99]
const flatMap = (a, f) => a.map(f).reduce((xs, ys) => [...xs, ...ys]); // using map first to avoid recursion in reduce
[1, 2, 3].map(x => [x, x + 1]); // => [[1, 2], [2, 3], [3, 4]]
flatMap([1, 2, 3], x => [x, x + 1]); // => [1, 2, 2, 3, 3, 4]
/*
recursive methods (at least obvious ones) are for chumps! lets do some string manipulation instead...
works, assuming your array does not actually includes "[" or "]" characters ¯\(◉◡◔)/¯
*/
Array.prototype.cheeky_flatMap = function(){
return JSON.parse( "["
+ JSON.stringify(this)
.replace(/[\[\]\,]+/g,",")
.replace(/(^\,|\,$)/g,"")
+ "]"
);
}
Also, works in any depth...
cheeky_flatmap([[1,2],[3,4],[[[5]]]])
- [1,2,3,4,5]
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If the stunt is performed by trained professionals that can be acceptable