ne method

bool ne(
  1. Iterator<U> other
)

Determines if the elements of this Iterator are not equal to those of another.

Implementation

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