Module OpamMisc.OP

module OP: sig .. end

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