Skip to content

searchValue

Subhajit Sahu edited this page Dec 28, 2022 · 14 revisions

Find a key with given value.

Alternatives: searchValue, searchValueAll.
Similar: search, searchValue.


function searchValue(x, v, fc, fm)
// x:  ilists
// v:  search value
// fc: compare function (a, b)
// fm: map function (v, k, x)
const xilists = require('extra-ilists');

var x = [['a', 'b', 'c', 'd', 'e'], [1, -2, 3, 2, 5]];
xilists.searchValue(x, 2);
// → 'd'                                            ^

xilists.searchValue(x, 2, (a, b) => Math.abs(a) - Math.abs(b));
// → 'b'                       ^

xilists.searchValue(x, 2, null, v => Math.abs(v));
// → 'b'                       ^


References

Clone this wiki locally