Loko.Infix
Infix operators for convenient use of optics.
val (%) : ('b -> 'c) -> ('a -> 'b) -> 'a -> 'c
(f % g) x is f (g x), i.e. % is function composition.
(f % g) x
f (g x)
%