/** * @tsplus static effect/core/stream/Stream.Ops fromPull */ export function fromPull( effect: Effect, Chunk>> ): Stream { return Stream.unwrapScoped(effect.map((pull) => Stream.repeatEffectChunkMaybe(pull))) }