Type Parameters

  • T
  • E

Implements

Constructors

  • Type Parameters

    • T
    • E

    Parameters

    • value: T

    Returns neverthrow.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

  • 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