Predicate<T> typedef

Predicate<T> = bool Function(T)

Represents a predicate (boolean-valued function) of one argument.

Implementation

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