interface IResult<T, E> {
    _unsafeUnwrap(config?: ErrorConfig): T;
    _unsafeUnwrapErr(config?: ErrorConfig): E;
    andThen<R extends neverthrow.Result<unknown, unknown>>(f: ((t: T) => R)): neverthrow.Result<InferOkTypes<R>, E | InferErrTypes<R>>;
    andThen<U, F>(f: ((t: T) => neverthrow.Result<U, F>)): neverthrow.Result<U, E | F>;
    asyncAndThen<U, F>(f: ((t: T) => neverthrow.ResultAsync<U, F>)): neverthrow.ResultAsync<U, E | F>;
    asyncMap<U>(f: ((t: T) => Promise<U>)): neverthrow.ResultAsync<U, E>;
    isErr(): this is neverthrow.Err<T, E>;
    isOk(): this is neverthrow.Ok<T, E>;
    map<A>(f: ((t: T) => A)): neverthrow.Result<A, E>;
    mapErr<U>(f: ((e: E) => U)): neverthrow.Result<T, U>;
    match<A>(ok: ((t: T) => A), err: ((e: E) => A)): A;
    orElse<R extends neverthrow.Result<unknown, unknown>>(f: ((e: E) => R)): neverthrow.Result<T, InferErrTypes<R>>;
    orElse<A>(f: ((e: E) => neverthrow.Result<T, A>)): neverthrow.Result<T, A>;
    safeUnwrap(): Generator<neverthrow.Err<never, E>, T, unknown>;
    unwrapOr<A>(v: A): T | A;
}

Type Parameters

  • T
  • E

Implemented by

Methods

  • This method is unsafe, and should only be used in a test environments

    Takes a Result<T, E> and returns a T when the result is an Ok, otherwise it throws a custom object.

    Parameters

    Returns T

  • This method is unsafe, and should only be used in a test environments

    takes a Result<T, E> and returns a E when the result is an Err, otherwise it throws a custom object.

    Parameters

    Returns E

  • Maps a Result<T, E> to ResultAsync<U, E> by applying an async function to a contained Ok value, leaving an Err value untouched.

    Type Parameters

    • U

    Parameters

    Returns neverthrow.ResultAsync<U, E>

  • Used to check if a Result is an Err

    Returns this is neverthrow.Err<T, E>

    true if the result is an Err variant of Result

  • Used to check if a Result is an OK

    Returns this is neverthrow.Ok<T, E>

    true if the result is an OK variant of Result

  • Maps a Result<T, E> to Result<U, E> by applying a function to a contained Ok value, leaving an Err value untouched.

    Type Parameters

    • A

    Parameters

    • f: ((t: T) => A)

      The function to apply an OK value

        • (t: T): A
        • Parameters

          Returns A

    Returns neverthrow.Result<A, E>

    the result of applying f or an Err untouched

  • Maps a Result<T, E> to Result<T, F> by applying a function to a contained Err value, leaving an Ok value untouched.

    This function can be used to pass through a successful result while handling an error.

    Type Parameters

    • U

    Parameters

    • f: ((e: E) => U)

      a function to apply to the error Err value

        • (e: E): U
        • Parameters

          Returns U

    Returns neverthrow.Result<T, U>

  • Given 2 functions (one for the Ok variant and one for the Err variant) execute the function that matches the Result variant.

    Match callbacks do not necessitate to return a Result, however you can return a Result if you want to.

    match is like chaining map and mapErr, with the distinction that with match both functions must have the same return type.

    Type Parameters

    • A

    Parameters

    • ok: ((t: T) => A)
        • (t: T): A
        • Parameters

          Returns A

    • err: ((e: E) => A)
        • (e: E): A
        • Parameters

          Returns A

    Returns A

  • Unwrap the Ok value, or return the default if there is an Err

    Type Parameters

    • A

    Parameters

    • v: A

      the default value to return if there is an Err

    Returns T | A