/** * Creates a stream from an Collection collection of values. * * @tsplus static effect/core/stream/Stream.Ops fromCollection */ export function fromCollection(as: Collection): Stream { return Stream.fromChunk(Chunk.from(as)) }