using
using<
A,B>(f): (p) =>Predicate<B>
Defined in: Core/Predicate.ts:106
Adapts a Predicate<A> to work on a different input type B by applying f
to extract the relevant A from a B before running the check.
Data-last — the predicate is the data being piped; f is the extractor.
Type Parameters
Section titled “Type Parameters”A
B
Parameters
Section titled “Parameters”(b) => A
Returns
Section titled “Returns”(
p):Predicate<B>
Parameters
Section titled “Parameters”Predicate<A>
Returns
Section titled “Returns”Predicate<B>