Predicate<T> typedef

Predicate<T> = bool Function(T value)

A predicate (boolean-valued function) of one argument.

Implementation

typedef Predicate<T> = bool Function(T value);