// 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(...values: A[]): C.UIO { return FromIterable.fromIterable(values) }