// ets_tracing: off import type * as CK from "../../../../Collections/Immutable/Chunk/index.js" import type * as T from "../../../../Effect/index.js" import * as M from "../../../../Managed/index.js" import type * as O from "../../../../Option/index.js" import type * as C from "../core.js" import * as RepeatEffectChunkOption from "./repeatEffectChunkOption.js" import * as UnwrapManaged from "./unwrapManaged.js" export function fromPull( io: M.RIO, CK.Chunk>> ): C.Stream { return UnwrapManaged.unwrapManaged( M.map_(io, (pull) => RepeatEffectChunkOption.repeatEffectChunkOption(pull)) ) }