-
Notifications
You must be signed in to change notification settings - Fork 5
cutAtRight
Subhajit Sahu edited this page May 3, 2023
·
12 revisions
Break array after given indices.
Alternatives: cut, cutRight, cutAt, cutAtRight.
Similar: cut, split, group.
function cutAtRight(x, is)
// x: an array
// is: split indices (sorted)
const xarray = require('extra-array');
var x = [1, 2, 3, 4, 5];
xarray.cutAtRight(x, [1, 3]);
// → [ [ 1, 2 ], [ 3, 4 ], [ 5 ] ]
xarray.cutAtRight(x, [0, 4]);
// → [ [ 1 ], [ 2, 3, 4, 5 ], [] ]