-
Notifications
You must be signed in to change notification settings - Fork 1
cutAtRight
Subhajit Sahu edited this page Jun 15, 2020
·
11 revisions
Breaks iterable after given indices. 🏃 📼 📦 🌔 📒
Alternatives: cut, cutRight, cutAt, cutAtRight.
Similar: cut, split, group.
iterable.cutAtRight(x, is);
// x: an iterable
// is: split indices (sorted)
const iterable = require('extra-iterable');
var x = [1, 2, 3, 4, 5];
[...iterable.cutRight(x, [1, 3])];
// [ [ 1, 2 ], [ 3, 4 ], [ 5 ] ]
[...iterable.cutRight(x, [0, 4])];
// [ [ 1 ], [ 2, 3, 4, 5 ], [] ]