dune._result
Dune_result.Result
dune._caml
dune._dune_lang
dune._ocaml_config
dune._stdune
dune._wp
dune.configurator
wp_dune
wp_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 =