greaterThan method

Predicate1<T> greaterThan(
  1. T a
)

Creates a predicate that evaluates to true for values more than a.

Implementation

Predicate1<T> greaterThan(T a) => (T b) => compare(a, b) < 0;