(predicate: Predicate<In>)
| 604 | |
| 605 | /** @internal */ |
| 606 | export const dropWhile = <In>(predicate: Predicate<In>): Sink.Sink<unknown, In, In> => |
| 607 | new SinkImpl(dropWhileReader(predicate)) |
| 608 | |
| 609 | /** @internal */ |
| 610 | const dropWhileReader = <In>( |
no test coverage detected
searching dependent graphs…