skipWhile method

view source

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

Implementation

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