Fun.Infix
val (%>) : ('a -> 'b) -> ('b -> 'c) -> 'a -> 'c
(f %> g) x is g (f x). Alias for Preface_stdlib.Fun.compose_left_to_right
(f %> g) x
g (f x)
Preface_stdlib.Fun.compose_left_to_right
val (<%) : ('b -> 'c) -> ('a -> 'b) -> 'a -> 'c
(f <% g) x is f (g x). Alias for Preface_stdlib.Fun.compose_right_to_left
(f <% g) x
f (g x)
Preface_stdlib.Fun.compose_right_to_left
val (%) : ('b -> 'c) -> ('a -> 'b) -> 'a -> 'c