operator >= method

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

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

Implementation

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