@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
14 lines (11 loc) • 460 B
text/typescript
// ets_tracing: off
import * as CK from "../../../../Collections/Immutable/Chunk/index.js"
import * as T from "../../../../Effect/index.js"
import * as CH from "../../Channel/index.js"
import * as C from "../core.js"
/**
* Creates a stream from an effect producing a value of type `A`
*/
export function effect<R, E, A>(self: T.Effect<R, E, A>): C.Stream<R, E, A> {
return new C.Stream(CH.unwrap(T.fold_(self, CH.fail, (x) => CH.write(CK.single(x)))))
}