stdlib
Option.Syntax
Binding operators. See manual section 12.23 for details.
compiler-libs.bytecomp
compiler-libs.common
compiler-libs.optcomp
compiler-libs.toplevel
dynlink
odoc_info
runtime_events
str
threads
unix
val (let*) : 'a option -> ('a -> 'b option) -> 'b option
( let* ) is Option.bind.
( let* )
Option.bind
val (and*) : 'a option -> 'b option -> ('a * 'b) option
( and* ) is Option.product.
( and* )
Option.product
val (let+) : 'a option -> ('a -> 'b) -> 'b option
( let+ ) is Option.map.
( let+ )
Option.map
val (and+) : 'a option -> 'b option -> ('a * 'b) option
( and+ ) is Option.product.
( and+ )