Skip to content
Subhajit Sahu edited this page May 10, 2020 · 27 revisions

Breaks iterable at given indices. 🏃 📼 📦 🌔

Alternatives: left, right.

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 ] ]

references

Clone this wiki locally