skipWhile method

  1. @override
RIterator<T> skipWhile(
  1. bool f(
    1. T
    )
)
override

Consumes and skips elements while f is true and returns the rest.

Implementation

@override
RIterator<T> skipWhile(bool Function(T) f) =>
    RIterator.fromIterable(super.skipWhile(f));