-
Notifications
You must be signed in to change notification settings - Fork 1
cut
Subhajit Sahu edited this page May 9, 2020
·
27 revisions
Breaks iterable at given indices. 🏃 📼 📦 🌔
iterable.cut(x, is);
// x: an iterable
// is: split indices (sorted)
// --> ...pieces
const iterable = require('extra-iterable');
var x = [1, 2, 3, 4, 5];
[...iterable.cut(x, [1, 3])];
// [[1], [2, 3], [4, 5]]
[...iterable.cut(x, [0, 4])];
// [[], [1, 2, 3, 4], [5]]