ne method

bool ne(
  1. Iterator<U> other
)

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

Implementation

@pragma("vm:prefer-inline")
bool ne(Iterator<U> other) {
  return cmp(other) != 0;
}