skipWhile method

view source

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

Implementation

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