Skip to content

cutRight

wolfram77 edited this page Mar 27, 2020 · 28 revisions

Breaks iterable after given indices.

Alternatives: left, right.

iterable.cutRight(x, is);
// x:  an iterable
// is: split indices (sorted)
// --> ...pieces
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], []]

references

Clone this wiki locally