-
Notifications
You must be signed in to change notification settings - Fork 1
getAll
wolfram77 edited this page Mar 31, 2020
·
26 revisions
Gets value at indices.
Alternatives: one, all, fractional.
iterable.getAll(x, is);
// x: an iterable
// is: indices (sorted)
// --> ...values
const iterable = require('extra-iterable');
var x = [2, 4, 6, 8];
[...iterable.getAll(x, [1, 2])];
// [4, 6]
[...iterable.getAll(x, [1, 3])];
// [4, 8]