-
Notifications
You must be signed in to change notification settings - Fork 0
flatMap
Subhajit Sahu edited this page Dec 22, 2022
·
16 revisions
Flatten nested entries, based on map function.
function flatMap(x, fm, ft)
// x: nested entries
// fm: map function (v, k, x)
// ft: test function for flatten (v, k, x) [is]
const entries = require('extra-entries');
var x = [
["ab", [["a", 1], ["b", 2]]],
["cde", [["c", 3], ["de", [["d", 4], ["e", [["e", 5]]]]]]]
];
[...entries.flatMap(x)];
// → [ [ "a", 1 ], [ "b", 2 ], [ "c", 3 ], [ "de", [ [Array], [Array] ] ] ]
[...entries.flatMap(x, v => entries.flat(v, 1))];
// → [
// → [ "a", 1 ],
// → [ "b", 2 ],
// → [ "c", 3 ],
// → [ "d", 4 ],
// → [ "e", [ [Array] ] ]
// → ]
[...entries.flatMap(x, v => entries.flat(v))];
// → [ [ "a", 1 ], [ "b", 2 ], [ "c", 3 ], [ "d", 4 ], [ "e", 5 ] ]