andThen
andThen<
A,B>(inner): <S>(outer) =>Lens<S,B>
Defined in: Core/Lens.ts:104
Composes two Lenses: focuses through the outer, then through the inner. Use in a pipe chain to build up a deep focus step by step.
Type Parameters
Section titled “Type Parameters”A
B
Parameters
Section titled “Parameters”Lens<A, B>
Returns
Section titled “Returns”<
S>(outer):Lens<S,B>
Type Parameters
Section titled “Type Parameters”S
Parameters
Section titled “Parameters”Lens<S, A>
Returns
Section titled “Returns”Lens<S, B>