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