@hazae41/result
Version:
Rust-like Result for TypeScript
360 lines (357 loc) • 11.8 kB
TypeScript
import { None, Some } from '@hazae41/option';
import { Awaitable } from '../../libs/promises/promises.js';
declare namespace Err {
type Infer<T> = Err<Inner<T>>;
type Inner<T> = T extends Err<infer Inner> ? Inner : never;
}
declare class Err<T = unknown> {
#private;
/**
* A failure
* @param inner
*/
constructor(inner: T);
/**
* Create an empty `Err`
* @returns `Err(void)`
*/
static void(): Err<void>;
/**
* Create an `Err`
* @param inner
* @returns `Err(inner)`
*/
static create<T>(inner: T): Err<T>;
/**
* Create an `Err` with an `Error` inside
* @param message
* @param options
* @returns `Err<Error>`
*/
static error(message: string, options?: ErrorOptions): Err<Error>;
get inner(): T;
[Symbol.dispose](this: Err<Disposable>): void;
[Symbol.asyncDispose](this: Err<AsyncDisposable>): Promise<void>;
/**
* Type guard for `Ok`
* @returns `true` if `Ok`, `false` if `Err`
*/
isOk(): false;
/**
* Returns true if the result is `Ok` and the value inside of it matches a predicate
* @param okPredicate
* @returns `true` if `Ok` and `await okPredicate(this.inner)`, `false` otherwise
*/
isOkAnd(okPredicate: unknown): Promise<false>;
/**
* Returns true if the result is `Ok` and the value inside of it matches a predicate
* @param okPredicate
* @returns `true` if `Ok` and `await okPredicate(this.inner)`, `false` otherwise
*/
isOkAndSync(okPredicate: unknown): false;
/**
* Type guard for `Err`
* @returns `true` if `Err`, `false` if `Ok`
*/
isErr(): this is Err<T>;
/**
* Returns true if the result is `Err` and the value inside of it matches a predicate
* @param errPredicate
* @returns `true` if `Err` and `await errPredicate(this.inner)`, `false` otherwise
*/
isErrAnd(errPredicate: (inner: T) => Awaitable<boolean>): Promise<boolean>;
/**
* Returns true if the result is `Err` and the value inside of it matches a predicate
* @param errPredicate
* @returns `true` if `Err` and `await errPredicate(this.inner)`, `false` otherwise
*/
isErrAndSync(errPredicate: (inner: T) => boolean): boolean;
/**
* Compile-time safely get Ok's inner type
* @returns `this.inner`
* @throws if `this` is `Err`
*/
get(this: [T] extends [never] ? unknown : never): never;
/**
* Compile-time safely get Err's inner type
* @returns `this.inner`
* @throws if `this` is `Ok`
*/
getErr(): T;
/**
* Get inner type
* @returns
*/
getAny(): T;
/**
* Transform `Result<T, E>` into `Option<T>`
* @returns `Some(this.inner)` if `Ok`, `None` if `Err`
*/
ok(): None;
/**
* Transform `Result<T, E>` into `Option<E>`
* @returns `Some(this.inner)` if `Err`, `None` if `Ok`
*/
err(): Some<T>;
/**
* Returns an iterator over the possibly contained value
* @yields `this.inner` if `Ok`
*/
[Symbol.iterator](): Iterator<never, void>;
/**
* Transform `Result<T,E>` into `[T,E]`
* @returns `[this.inner, undefined]` if `Ok`, `[undefined, this.inner]` if `Err`
*/
split(): [undefined, T];
/**
* Returns true if the result is an `Ok` value containing the given value
* @param value
* @returns `true` if `Ok` and `this.inner === value`, `false` otherwise
*/
contains(value: unknown): false;
/**
* Returns true if the result is an `Err` value containing the given value
* @param value
* @returns `true` if `Err` and `this.inner === value`, `false` otherwise
*/
containsErr(value: T): boolean;
/**
* Get the inner value or throw to the closest `Result.unthrow`
* @param thrower The thrower from `Result.unthrow`
* @returns `this.inner` if `Ok`
* @throws `undefined` if `Err`
* @see Result.unthrow
* @see Result.unthrowSync
*/
throw(thrower: (e: Err<T>) => void): never;
/**
* Get the inner value if Ok or throw the inner error
* @returns `this.inner` if `Ok`
* @throws `this.inner` if `Err`
*/
getOrThrow(): never;
/**
* Get the inner error if Err or throw the inner value
* @returns `this.inner` if `Err`
* @throws `this.inner` if `Ok`
*/
getErrOrThrow(): T;
/**
* Get the inner value if Ok or null if Err
* @returns `this.inner` if `Ok`, `null` if `Err`
*/
getOrNull(): null;
/**
* Get the inner error if Err or null if Ok
* @returns `this.inner` if `Err`, `null` if `Ok`
*/
getErrOrNull(): T;
/**
* Get the inner value or a default one
* @param value
* @returns `this.inner` if `Ok`, `value` if `Err`
*/
getOr<U>(value: U): U;
/**
* Get the inner value or compute a default one from the inner error
* @param errMapper
* @returns `this.inner` if `Ok`, `await errMapper(this.inner)` if `Err`
* @throws if `await errMapper(this.inner)` throws
*/
getOrElse<U>(errMapper: (inner: T) => Awaitable<U>): Promise<U>;
/**
* Get the inner value or compute a default one from the inner error
* @param errMapper
* @returns `this.inner` if `Ok`, `errMapper(this.inner)` if `Err`
* @throws if `errMapper(this.inner)` throws
*/
getOrElseSync<U>(errMapper: (inner: T) => U): U;
/**
* Get this if Ok or throw the inner error
* @returns
*/
checkOrThrow(): never;
/**
* Get this if Err or throw the inner value
* @returns
*/
checkErrOrThrow(): this;
/**
* Get this if Ok or return null
* @returns
*/
checkOrNull(): null;
/**
* Get this if Err or return null
* @returns
*/
checkErrOrNull(): this;
/**
* Transform Result<Promise<T>, E> into Promise<Result<T, E>>
* @returns `await this.inner` if `Ok`, `this` if `Err`
*/
await(): Promise<this>;
/**
* Transform Result<T, Promise<E>> into Promise<Result<T, E>>
* @returns `await this.inner` if `Err`, `this` if `Ok`
*/
awaitErr<T>(this: Err<PromiseLike<T>>): Promise<Err<Awaited<T>>>;
/**
* Transform Result<Promise<T>, Promise<E>> into Promise<Result<T, E>>
* @returns `await this.inner`
*/
awaitAll<T>(this: Err<PromiseLike<T>>): Promise<Err<Awaited<T>>>;
/**
* Transform `Result<T, E>` into `Result<void, E>`
* @returns `Ok<void>` if `Ok<T>`, `Err<E>` if `E<E>`
*/
clear(): this;
/**
* Transform `Result<T, E>` into `Result<T, void>`
* @returns `Ok<T>` if `Ok<T>`, `Err<void>` if `E<E>`
*/
clearErr(): Err<void>;
/**
* Calls the given callback with the inner value if `Ok`
* @param okCallback
* @returns `this`
*/
inspect(okCallback: unknown): Promise<this>;
/**
* Calls the given callback with the inner value if `Ok`
* @param okCallback
* @returns `this`
*/
inspectSync(okCallback: unknown): this;
/**
* Calls the given callback with the inner value if `Err`
* @param errCallback
* @returns `this`
*/
inspectErr(errCallback: (inner: T) => Awaitable<void>): Promise<this>;
/**
* Calls the given callback with the inner value if `Err`
* @param errCallback
* @returns `this`
*/
inspectErrSync(errCallback: (inner: T) => void): this;
/**
* Return a new `Ok` but with the given `inner`
* @param inner
* @returns `Ok(inner)` if `Ok`, `this` if `Err`
*/
set(inner: unknown): this;
/**
* Return a new `Err` but with the given `inner`
* @param inner
* @returns `Err(inner)` if `Err`, `this` if `Ok`
*/
setErr<U>(inner: U): Err<U>;
/**
* Map the inner value into another
* @param okMapper
* @returns `Ok(await okMapper(this.inner))` if `Ok`, `this` if `Err`
* @throws if `await okMapper(this.inner)` throws
*/
map(okMapper: unknown): Promise<this>;
/**
* Map the inner value into another
* @param okMapper
* @returns `Ok(okMapper(this.inner))` if `Ok`, `this` if `Err`
* @throws if `okMapper(this.inner)` throws
*/
mapSync(okMapper: unknown): this;
/**
* Map the inner error into another
* @param errMapper
* @returns `Err(await errMapper(this.inner))` if `Err`, `this` if `Ok`
* @throws if `await errMapper(this.inner)` throws
*/
mapErr<U>(errMapper: (inner: T) => Awaitable<U>): Promise<Err<U>>;
/**
* Map the inner error into another
* @param errMapper
* @returns `Err(errMapper(this.inner))` if `Err`, `this` if `Ok`
* @throws if `errMapper(this.inner)` throws
*/
mapErrSync<U>(errMapper: (inner: T) => U): Err<U>;
/**
* Map the inner value into another, or a default one
* @param value
* @param okMapper
* @returns `await okMapper(this.inner)` if `Ok`, `value` if `Err`
* @throws if `await okMapper(this.inner)` throws
*/
mapOr<U>(value: U, okMapper: unknown): Promise<U>;
/**
* Map the inner value into another, or a default one
* @param value
* @param okMapper
* @returns `okMapper(this.inner)` if `Ok`, `value` if `Err`
* @throws if `okMapper(this.inner)` throws
*/
mapOrSync<U>(value: U, okMapper: unknown): U;
/**
* Map the inner value into another, or a default one
* @param errMapper
* @param okMapper
* @returns `await okMapper(this.inner)` if `Ok`, `await errMapper(this.inner)` if `Err`
* @throws if `await okMapper(this.inner)` or `await errMapper(this.inner)` throws
*/
mapOrElse<U>(errMapper: (inner: T) => Awaitable<U>, okMapper: unknown): Promise<U>;
/**
* Map the inner value into another, or a default one
* @param errMapper
* @param okMapper
* @returns `okMapper(this.inner)` if `Ok`, `errMapper(this.inner)` if `Err`
* @throws if `okMapper(this.inner)` or `errMapper(this.inner)` throws
*/
mapOrElseSync<U>(errMapper: (inner: T) => U, okMapper: unknown): U;
/**
* Return `value` if `Ok`, return `this` if `Err`
* @param value
* @returns `value` if `Ok`, `this` if `Err`
*/
and(value: unknown): this;
/**
* Return `await okMapper(this.inner)` if `Ok`, return `this` if `Err`
* @param okMapper
* @returns `await okMapper(this.inner)` if `Ok`, `this` if `Err`
* @throws if `await okMapper(this.inner)` throws
*/
andThen(okMapper: unknown): Promise<this>;
/**
* Return `okMapper(this.inner)` if `Ok`, return `this` if `Err`
* @param okMapper
* @returns `okMapper(this.inner)` if `Ok`, `this` if `Err`
* @throws if `okMapper(this.inner)` throws
*/
andThenSync(okMapper: unknown): this;
/**
* Return `value` if `Err`, return `this` if `Ok`
* @param value
* @returns `value` if `Err`, `this` if `Ok`
*/
or<U>(value: U): U;
/**
* Return `await errMapper(this.inner)` if `Err`, return `this` if `Ok`
* @param errMapper
* @returns `await errMapper(this.inner)` if `Err`, `this` if `Ok`
* @throws if `await errMapper(this.inner)` throws
*/
orElse<U>(errMapper: (inner: T) => Awaitable<U>): Promise<U>;
/**
* Return `errMapper(this.inner)` if `Err`, return `this` if `Ok`
* @param errMapper
* @returns `errMapper(this.inner)` if `Err`, `this` if `Ok`
* @throws if `errMapper(this.inner)` throws
*/
orElseSync<U>(errMapper: (inner: T) => U): U;
/**
* Transform Result<Result<T, E1>, E2> into Result<T, E1 | E2>
* @param result
* @returns `this` if `Err`, `this.inner` if `Ok`
*/
flatten(): this;
}
export { Err };