Predicate3<T1, T2, T3> typedef
Predicate3<T1, T2, T3> =
bool Function(T1 arg1, T2 arg2, T3 arg3)
Predicate function type with 3 positional arguments.
Implementation
typedef Predicate3<T1, T2, T3> = bool Function(T1 arg1, T2 arg2, T3 arg3);