-
Notifications
You must be signed in to change notification settings - Fork 1
searchInfixAll
Subhajit Sahu edited this page Jun 20, 2020
·
13 revisions
Finds indices of an infix. 🏃 📼 📦 🌔 📒
Alternatives: searchInfix, searchInfixRight, searchInfixAll.
Similar: isInfix, searchInfix.
Similar: search, scan, find.
iterable.searchInfixAll(x, y, fc, [fm]);
// x: an iterable
// y: search infix
// fc: compare function (a, b)
// fm: map function (v, i, x)
const iterable = require('extra-iterable');
var x = [1, 2, 3, 4, -2, -3];
var y = [2, 3];
[...iterable.searchInfixAll(x, y)];
// [ 1 ]
var y = [-2, -3];
[...iterable.searchInfixAll(x, y)];
// [ 4 ]
[...iterable.searchInfixAll(x, y, (a, b) => Math.abs(a) - Math.abs(b))];
// [ 1, 4 ]
[...iterable.searchInfixAll(x, y, null, v => Math.abs(v))];
// [ 1, 4 ]