UNPKG

@effect-ts/system

Version:

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

12 lines (9 loc) 260 B
// ets_tracing: off import type * as C from "../core.js" import * as FromIterable from "./fromIterable.js" /** * Creates a stream from the specified values */ export function make<A>(...values: A[]): C.UIO<A> { return FromIterable.fromIterable(values) }