dropWhile method

Conveyor<F, O> dropWhile(
  1. bool f(
    1. O o
    )
)

Implementation

Conveyor<F, O> dropWhile(bool f(O o)) => pipe(Pipe.dropWhile(f));