Predicate<T> typedef
Predicate<T> =
bool Function(T value)
A function that tests a value of type T and returns a boolean.
Implementation
typedef Predicate<T> = bool Function(T value);
A function that tests a value of type T and returns a boolean.
typedef Predicate<T> = bool Function(T value);