Predicate2<T1, T2> typedef

Predicate2<T1, T2> = bool Function(T1 arg1, T2 arg2)

Predicate function type with 2 positional arguments.

Implementation

typedef Predicate2<T1, T2> = bool Function(T1 arg1, T2 arg2);