lteqv method

  1. @override
bool lteqv(
  1. T x,
  2. T y
)
override

Returns true if x <= y, false otherwise.

Implementation

@override
bool lteqv(T x, T y) => compare(x, y) <= 0;