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

Searches a value from left. 🏃 [:vhs:] 📦 🌔

Alternatives: left, right, all.

iterable.search(x, v, [fn]);
// x:  an iterable
// v:  search value
// fn: compare function (a, b)
// --> index of value, -1 if not found
const iterable = require('extra-iterable');

var x = [1, 2, 3, 2, 5];
iterable.search(x, 2);
// 1        ^

var x = [1, -2, 3, 2, 5];
iterable.search(x, 2, (a, b) => Math.abs(a) - Math.abs(b));
// 1         ^

references

Clone this wiki locally