Indexed_bind.Syntax
module Core : Preface_specs.Indexed_bind.CORE
type ('a, 'index) t = ('a, 'index) Core.t
The type held by the Indexed Bind
.
Syntactic shortcuts for flipped version of CORE
.bind:
let* x = e in f
is equals to bind (fun x -> f) e
.