Pacote
    Preparing search index...

    Function bimap

    • Maps a Result<T, E> to Result<U, F> by applying a pair of functions over each of the possible results.

      Type Parameters

      • T
      • E
      • U
      • F

      Parameters

      • onOk: (ok: T) => U

        Value mapping function.

      • onErr: (err: E) => F

        Error mapping function.

      • result: Result<T, E>

        Result to map.

      Returns Result<U, F>

      Mapped result.