Predicate<T> typedef

Predicate<T> = SingleFunction<T, bool>

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

Implementation

typedef Predicate<T> = SingleFunction<T, bool>;