Interface ResultConstructor

Hierarchy

  • ResultConstructor

Properties

Properties

err: {
    <T, E>(): Result<T, Unit>;
    <T, E>(error): Result<T, E>;
}

Type declaration

    • <T, E>(): Result<T, Unit>
    • Create an instance of Err.

      Note: While you may create the Result type via normal JavaScript class construction, it is not recommended for the functional style for which the library is intended. Instead, use err.

      // Avoid:
      const anErr = new Result.Err('alas, failure');

      // Prefer:
      const anErr = Result.err('alas, failure');

      Type Parameters

      • T

      • E

      Returns Result<T, Unit>

    • <T, E>(error): Result<T, E>
    • Type Parameters

      • T

      • E

      Parameters

      • error: E

      Returns Result<T, E>

ok: {
    <T, E>(): Result<Unit, E>;
    <T, E>(value): Result<T, E>;
}

Type declaration

    • <T, E>(): Result<Unit, E>
    • Create an instance of Ok.

      Note: While you may create the Result type via normal JavaScript class construction, it is not recommended for the functional style for which the library is intended. Instead, use ok.

      // Avoid:
      const aString = new Result.Ok('characters');

      // Prefer:
      const aString = Result.ok('characters);

      Note that you may explicitly pass Unit.Unit Unit to the Ok constructor to create a Result<Unit, E>. However, you may not call the Ok constructor with null or undefined to get that result (the type system won't allow you to construct it that way). Instead, for convenience, you can simply call ok, which will construct the type correctly.

      Type Parameters

      • T extends {}

      • E

      Returns Result<Unit, E>

    • <T, E>(value): Result<T, E>
    • Type Parameters

      • T

      • E

      Parameters

      • value: T

      Returns Result<T, E>

Generated using TypeDoc