ge method

bool ge(
  1. Iterator<U> other
)

Determines if the elements of this Iterator are lexicographically greater than or equal to those of another.

Implementation

bool ge(Iterator<U> other) {
  return cmp(other) >= 0;
}