// ets_tracing: off import * as CK from "../../../../Collections/Immutable/Chunk/index.js" import type * as C from "../core.js" import * as FromChunk from "./fromChunk.js" /** * Creates a stream from an iterable collection of values */ export function fromIterable(as: Iterable): C.UIO { return FromChunk.fromChunk(CK.from(as)) }