Module OpamMisc.OP

module OP: sig .. end

val (|>) : 'a -> ('a -> 'b) -> 'b
Pipe operator
val (++) : ('a -> 'b) -> ('b -> 'c) -> 'a -> 'c
Function composition
val finally : (unit -> 'a) -> (unit -> unit) -> 'a
finally f cleaner call the cleaner function when f is complete even in the presence of exceptions.