UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

13 lines (12 loc) 460 B
// ets_tracing: off import * as CK from "../../../../Collections/Immutable/Chunk/index.mjs"; import * as FlattenChunks from "./flattenChunks.mjs"; import * as Map from "./map.mjs"; /** * Submerges the iterables carried by this stream into the stream's structure, while * still preserving them. */ export function flattenIterables(self) { return FlattenChunks.flattenChunks(Map.map_(self, a => CK.from(a))); } //# sourceMappingURL=flattenIterables.mjs.map