skipWhile method

view source

Iterable<E> skipWhile (bool test(E element)) inherited

Implementation

Iterable<E> skipWhile(bool test(E element)) {
  return SkipWhileIterable<E>(this, test);
}