skipWhile method
Returns an iterable that skips elements while test returns true.
This is a non-mutating operation that returns an iterable.
Implementation
@override
Iterable<E> skipWhile(bool Function(E element) test) => value.skipWhile(test);
Returns an iterable that skips elements while test returns true.
This is a non-mutating operation that returns an iterable.
@override
Iterable<E> skipWhile(bool Function(E element) test) => value.skipWhile(test);