skipWhile method

  1. @override
Iterable<E> skipWhile(
  1. bool test(
    1. E element
    )
)
override

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);