ElementPredicate<T> typedef

ElementPredicate<T> = bool Function(T element)

A function that tests whether an element of type T satisfies a condition.

Implementation

typedef ElementPredicate<T> = bool Function(T element);