Module Function


module Function: sig .. end
Functional composition. Takes two functions f and g and returns a third function equivalent to fun x -> f (g x)

val ($) : ('a -> 'b) -> ('c -> 'a) -> 'c -> 'b