newSequential<S, U, A, B>(computation1): (<T>(computation2) => Optic<S, T, A, B>)
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
+------+
Creates a sequential combinator that merging two computations
C1
andC2
. It computes next computation twice.