There was an error while loading. Please reload this page.
Find indices of value.
Alternatives: searchValue, searchValueRight, searchValueAll. Similar: search, scan, find.
function searchValueAll(x, v, fc, fm) // x: an array // v: search value // fc: compare function (a, b) // fm: map function (v, i, x)
const xarray = require('extra-array'); var x = [1, 2, 3, 2, 5]; xarray.searchValueAll(x, 2); // → [ 1, 3 ] ^ ^ var x = [1, 2, 3, -2, 5]; xarray.searchValueAll(x, 2, (a, b) => Math.abs(a) - Math.abs(b)); // → [ 1, 3 ] ^ ^ xarray.searchValueAll(x, 2, null, v => Math.abs(v)); // → [ 1, 3 ] ^ ^