operator <= method

bool operator <=(
  1. Iterable<T> other
)

Returns true if this sequence is less than or equal to other.

Implementation

bool operator <=(Iterable<T> other) => !(this > other);