@mikuroxina/mini-fn
    Preparing search index...

    Function newSequential

    • 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

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