-
Notifications
You must be signed in to change notification settings - Fork 1
cut
Subhajit Sahu edited this page Jun 15, 2020
·
27 revisions
Breaks iterable when test passes. 🏃 📼 📦 🌔 📒
Alternatives: cut, cutRight, cutAt, cutAtRight.
Similar: cut, split, group.
iterable.cut(x, fn);
// x: an iterable
// fn: test function (v, i, x)
const iterable = require('extra-iterable');
var x = [1, 2, 3, 4, 5];
[...iterable.cut(x, v => v % 2 === 0)];
// [ [ 1 ], [ 2, 3 ], [ 4, 5 ] ]
[...iterable.cut(x, v => v % 2 === 1)];
// [ [], [ 1, 2 ], [ 3, 4 ], [ 5 ] ]