UNPKG

@effect-ts/system

Version:

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

102 lines 6.07 kB
import type { Ref } from "../Ref/XRef.js"; import * as semaphore from "../Semaphore/index.js"; import * as T from "./effect.js"; /** * A `XRefM[RA, RB, EA, EB, A, B]` is a polymorphic, purely functional * description of a mutable reference. The fundamental operations of a `XRefM` * are `set` and `get`. `set` takes a value of type `A` and sets the reference * to a new value, requiring an environment of type `RA` and potentially * failing with an error of type `EA`. `get` gets the current value of the * reference and returns a value of type `B`, requiring an environment of type * `RB` and potentially failing with an error of type `EB`. * * When the error and value types of the `XRefM` are unified, that is, it is a * `XRefM<R, R, E, E, A, A>`, the `XRefM` also supports atomic `modify` and * `update` operations. * * Unlike an ordinary `ZRef`, a `XRefM` allows performing effects within update * operations, at some cost to performance. Writes will semantically block * other writers, while multiple readers can read simultaneously. */ export interface XRefM<RA, RB, EA, EB, A, B> { readonly _RA: (_: RA) => void; readonly _RB: (_: RB) => void; readonly _EA: () => EA; readonly _EB: () => EB; readonly _A: (_: A) => void; readonly _B: () => B; /** * Folds over the error and value types of the `XRefM`. This is a highly * polymorphic method that is capable of arbitrarily transforming the error * and value types of the `XRefM`. For most use cases one of the more * specific combinators implemented in terms of `foldM` will be more * ergonomic but this method is extremely useful for implementing new * combinators. */ readonly foldM: <RC, RD, EC, ED, C, D>(ea: (_: EA) => EC, eb: (_: EB) => ED, ca: (_: C) => T.Effect<RC, EC, A>, bd: (_: B) => T.Effect<RD, ED, D>) => XRefM<RA & RC, RB & RD, EC, ED, C, D>; /** * Folds over the error and value types of the `XRefM`, allowing access to * the state in transforming the `set` value. This is a more powerful version * of `foldM` but requires unifying the environment and error types. */ readonly foldAllM: <RC, RD, EC, ED, C, D>(ea: (_: EA) => EC, eb: (_: EB) => ED, ec: (_: EB) => EC, ca: (_: C) => (_: B) => T.Effect<RC, EC, A>, bd: (_: B) => T.Effect<RD, ED, D>) => XRefM<RB & RA & RC, RB & RD, EC, ED, C, D>; /** * Reads the value from the `XRefM`. */ readonly get: T.Effect<RB, EB, B>; /** * Writes a new value to the `XRefM`, with a guarantee of immediate * consistency (at some cost to performance). */ readonly set: (a: A) => T.Effect<RA, EA, void>; } export declare class AtomicM<A> implements XRefM<unknown, unknown, never, never, A, A> { readonly ref: Ref<A>; readonly semaphore: semaphore.Semaphore; readonly _tag = "AtomicM"; readonly _RA: (_: unknown) => void; readonly _RB: (_: unknown) => void; readonly _EA: () => never; readonly _EB: () => never; readonly _A: (_: A) => void; readonly _B: () => A; constructor(ref: Ref<A>, semaphore: semaphore.Semaphore); foldM<RC, RD, EC, ED, C, D>(_ea: (_: never) => EC, _eb: (_: never) => ED, ca: (_: C) => T.Effect<RC, EC, A>, bd: (_: A) => T.Effect<RD, ED, D>): XRefM<RC, RD, EC, ED, C, D>; foldAllM<RC, RD, EC, ED, C, D>(_ea: (_: never) => EC, _eb: (_: never) => ED, _ec: (_: never) => EC, ca: (_: C) => (_: A) => T.Effect<RC, EC, A>, bd: (_: A) => T.Effect<RD, ED, D>): XRefM<RC, RD, EC, ED, C, D>; get get(): T.Effect<unknown, never, A>; set(a: A): T.Effect<unknown, never, void>; } export declare class DerivedM<RA, RB, EA, EB, A, B> implements XRefM<RA, RB, EA, EB, A, B> { readonly use: <X>(f: <S>(value: AtomicM<S>, getEither: (s: S) => T.Effect<RB, EB, B>, setEither: (a: A) => T.Effect<RA, EA, S>) => X) => X; readonly _tag = "DerivedM"; readonly _RA: (_: RA) => void; readonly _RB: (_: RB) => void; readonly _EA: () => EA; readonly _EB: () => EB; readonly _A: (_: A) => void; readonly _B: () => B; constructor(use: <X>(f: <S>(value: AtomicM<S>, getEither: (s: S) => T.Effect<RB, EB, B>, setEither: (a: A) => T.Effect<RA, EA, S>) => X) => X); foldM<RC, RD, EC, ED, C, D>(ea: (_: EA) => EC, eb: (_: EB) => ED, ca: (_: C) => T.Effect<RC, EC, A>, bd: (_: B) => T.Effect<RD, ED, D>): XRefM<RA & RC, RB & RD, EC, ED, C, D>; foldAllM<RC, RD, EC, ED, C, D>(ea: (_: EA) => EC, eb: (_: EB) => ED, ec: (_: EB) => EC, ca: (_: C) => (_: B) => T.Effect<RC, EC, A>, bd: (_: B) => T.Effect<RD, ED, D>): XRefM<RB & RA & RC, RB & RD, EC, ED, C, D>; get get(): T.Effect<RB, EB, B>; set(a: A): T.Effect<RA, EA, void>; } export declare class DerivedAllM<RA, RB, EA, EB, A, B> implements XRefM<RA, RB, EA, EB, A, B> { readonly use: <X>(f: <S>(value: AtomicM<S>, getEither: (s: S) => T.Effect<RB, EB, B>, setEither: (a: A) => (s: S) => T.Effect<RA, EA, S>) => X) => X; readonly _tag = "DerivedAllM"; readonly _RA: (_: RA) => void; readonly _RB: (_: RB) => void; readonly _EA: () => EA; readonly _EB: () => EB; readonly _A: (_: A) => void; readonly _B: () => B; constructor(use: <X>(f: <S>(value: AtomicM<S>, getEither: (s: S) => T.Effect<RB, EB, B>, setEither: (a: A) => (s: S) => T.Effect<RA, EA, S>) => X) => X); foldM<RC, RD, EC, ED, C, D>(ea: (_: EA) => EC, eb: (_: EB) => ED, ca: (_: C) => T.Effect<RC, EC, A>, bd: (_: B) => T.Effect<RD, ED, D>): XRefM<RA & RC, RB & RD, EC, ED, C, D>; foldAllM<RC, RD, EC, ED, C, D>(ea: (_: EA) => EC, eb: (_: EB) => ED, ec: (_: EB) => EC, ca: (_: C) => (_: B) => T.Effect<RC, EC, A>, bd: (_: B) => T.Effect<RD, ED, D>): XRefM<RB & RA & RC, RB & RD, EC, ED, C, D>; get get(): T.Effect<RB, EB, B>; set(a: A): T.Effect<RA, EA, void>; } export interface RefM<A> extends XRefM<unknown, unknown, never, never, A, A> { } export declare const concrete: <RA, RB, EA, EB, A, B>(_: XRefM<RA, RB, EA, EB, A, B>) => AtomicM<A | B> | DerivedM<RA, RB, EA, EB, A, B> | DerivedAllM<RA, RB, EA, EB, A, B>; //# sourceMappingURL=XRefM.d.ts.map