monad.ml
dune._caml
dune._dune_lang
dune._ocaml_config
dune._result
dune._stdune
dune._wp
dune.configurator
wp_dune
wp_jbuilder
1 2 3 4 5 6 7 8 9 10 11 module type S = sig type 'a t val return : 'a -> 'a t val ( >>= ) : 'a t -> ('a -> 'b t) -> 'b t end module Id = struct type 'a t = 'a let return x = x let ( >>= ) x f = f x end
1 2 3 4 5 6 7 8 9 10 11
module type S = sig type 'a t val return : 'a -> 'a t val ( >>= ) : 'a t -> ('a -> 'b t) -> 'b t end module Id = struct type 'a t = 'a let return x = x let ( >>= ) x f = f x end