• Creates a sequential combinator that merging two computations C1 and C2. It computes next computation twice.

               +------+
    S -------->|      |---------> A
               |  C1  |
        +------|      |<--------- B
        |      +------+
        | U
        |      +------+
        +----->|      |--------> A
               |  C2  |
    T <--------|      |<-------- B
               +------+
    

    Type Parameters

    • S

    • U

    • A

    • B

    Parameters

    • computation1: Optic<S, U, A, B>

    Returns (<T>(computation2) => Optic<S, T, A, B>)

      • <T>(computation2): Optic<S, T, A, B>
      • Type Parameters

        • T

        Parameters

        • computation2: Optic<U, T, A, B>

        Returns Optic<S, T, A, B>

Generated using TypeDoc