Type Parameters

  • T
  • E

Implements

Constructors

  • Type Parameters

    • T
    • E

    Parameters

    • value: T

    Returns Ok<T, E>

Properties

value: T

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

  • Similar to map Except you must return a new Result.

    This is useful for when you need to do a subsequent computation using the inner T value, but that computation might fail. Additionally, andThen is really useful as a tool to flatten a Result<Result<A, E2>, E1> into a Result<A, E2> (see example below).

    Type Parameters

    • R extends Result<unknown, unknown>

    Parameters

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

      The function to apply to the current value

        • (t: T): R
        • Parameters

          Returns R

    Returns Result<InferOkTypes<R>, E | InferErrTypes<R>>

  • Type Parameters

    • U
    • F

    Parameters

    Returns Result<U, E | F>

  • Similar to map Except you must return a new Result.

    This is useful for when you need to do a subsequent async computation using the inner T value, but that computation might fail. Must return a ResultAsync

    Type Parameters

    • U
    • F

    Parameters

    Returns ResultAsync<U, E | F>

  • 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 ResultAsync<U, E>

  • Used to check if a Result is an Err

    Returns this is 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 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 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 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

  • Takes an Err value and maps it to a Result<T, SomeNewType>.

    This is useful for error recovery.

    Type Parameters

    • R extends Result<unknown, unknown>

    Parameters

    • _f: ((e: E) => R)

      A function to apply to an Err value, leaving Ok values untouched.

        • (e: E): R
        • Parameters

          Returns R

    Returns Result<T, InferErrTypes<R>>

  • Type Parameters

    • A

    Parameters

    Returns Result<T, A>

  • Emulates Rust's ? operator in safeTry's body. See also safeTry.

    Returns Generator<Err<never, E>, T, unknown>

  • 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