@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
34 lines (29 loc) • 753 B
text/typescript
// ets_tracing: off
import * as CK from "../../../Collections/Immutable/Chunk/index.js"
import type { Predicate } from "../../../Function/index.js"
import * as CH from "../Channel/index.js"
import * as C from "./core.js"
export function dropWhile<Err, In>(
p: Predicate<In>
): C.Sink<unknown, Err, In, Err, In, any> {
const loop: CH.Channel<
unknown,
Err,
CK.Chunk<In>,
unknown,
Err,
CK.Chunk<In>,
any
> = CH.readWith(
(in_) => {
const leftover = CK.dropWhile_(in_, p)
const more = CK.isEmpty(leftover)
return more
? loop
: CH.zipRight_(CH.write(leftover), CH.identity<Err, CK.Chunk<In>, any>())
},
(_) => CH.fail(_),
(_) => CH.unit
)
return new C.Sink(loop)
}