@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
53 lines (48 loc) • 1.47 kB
text/typescript
// ets_tracing: off
import * as core from "../../../../Effect/core.js"
import type { Effect } from "../../../../Effect/effect.js"
import * as coreMap from "../../../../Effect/map.js"
import * as Chunk from "../core.js"
import { concreteId } from "../definition.js"
/**
* Drops all elements so long as the predicate returns true.
*/
export function dropWhileEffect_<R, E, A>(
self: Chunk.Chunk<A>,
f: (a: A) => Effect<R, E, boolean>
): Effect<R, E, Chunk.Chunk<A>> {
return core.suspend(() => {
const iterator = concreteId(self).arrayLikeIterator()
let next
let dropping: Effect<R, E, boolean> = core.succeed(true)
let builder = Chunk.empty<A>()
while ((next = iterator.next()) && !next.done) {
const array = next.value
const len = array.length
let i = 0
while (i < len) {
const a = array[i]!
dropping = core.chain_(dropping, (d) =>
coreMap.map_(d ? f(a) : core.succeed(false), (b) => {
if (!b) {
builder = Chunk.append_(builder, a)
}
return b
})
)
i++
}
}
return coreMap.map_(dropping, () => builder)
})
}
/**
* Drops all elements so long as the predicate returns true.
*
* @ets_data_first dropWhileEffect_
*/
export function dropWhileEffect<R, E, A>(
f: (a: A) => Effect<R, E, boolean>
): (self: Chunk.Chunk<A>) => Effect<R, E, Chunk.Chunk<A>> {
return (self) => dropWhileEffect_(self, f)
}