import { Transformer } from "https://deno.land/x/rimbu@1.2.0/core/mod.ts";
const { indicesOf } = Transformer;
Returns a Transformer
that outputs the index of each received element that is equal to the given searchValue
value,
according to the eq
equality function.
Parameters
searchValue: T
- the value to match input values to
Returns
Transformer<T, number>