We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Gets value at indices. 🏃 📼 📦 🌔
Alternatives: one, all.
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]