lessThan method

Predicate1<T> lessThan(
  1. T a
)

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

Implementation

Predicate1<T> lessThan(T a) => (T b) => this(a, b) > 0;