/** * Creates a pure stream from a variable list of values * * @tsplus static effect/core/stream/Stream.Ops __call */ export function make(...as: Array): Stream { return Stream.fromCollection(as) }