dropWhile abstract method

DoubleStream dropWhile(
  1. bool predicate(
    1. double
    )
)

Drops elements while the predicate is true, then returns the remainder.

Example

final from3 = DoubleStream.of([1.1, 2.2, 3.3, 4.4])
    .dropWhile((d) => d < 3.0);

Implementation

DoubleStream dropWhile(bool Function(double) predicate);