olmiExamples
OlmiOption.Requirement
olmi
type 'a t = 'a option
val return : 'a -> 'a t
val join : 'a t t -> 'a t
val bind : 'a t -> ('a -> 'b t) -> 'b t
val fmap : ('a -> 'b) -> 'a t -> 'b t