dune._caml
Dune_caml.Result
dune._dune_lang
dune._ocaml_config
dune._stdune
dune._which-program
dune.configurator
which_program_dune
which_program_jbuilder
include sig ... end
type ('a, 'error) t = ('a, 'error) Pervasives.result =
| Ok of 'a
| Error of 'error
The result type.
It is equal to the result type defined by the standard library for OCaml >= 4.03.
type ('a, 'error) result = ('a, 'error) t