import type * as Tp from "@effect-ts/system/Collections/Immutable/Tuple"; import type { XIO } from "./definition.js"; /** * Lift a sync (non failable) computation */ export declare const succeedWith: (f: () => A) => XIO; /** * Combines this computation with the specified computation. */ export declare const zip: (fb: XIO) => (fa: XIO) => XIO>; /** * Extends this computation with another computation that depends on the * result of this computation by running the first computation, using its * result to generate a second computation, and running that computation. */ export declare const chain: (f: (a: A) => XIO) => (self: XIO) => XIO; /** * `map` can be used to turn functions `(a: A) => B` into functions `(fa: F) => F` * whose argument and return types use the type constructor `F` to represent * some computational context. */ export declare const map: (f: (a: A) => B) => (self: XIO) => XIO; /** * Succeed with a value A */ export declare const succeed: (a: A) => XIO; /** * Run the computation */ export declare const run: (self: XIO) => A; /** * Returns a computation that effectfully "peeks" at the success of this one. */ export declare const tap: (f: (a: A) => XIO) => (self: XIO) => XIO; //# sourceMappingURL=operations.d.ts.map