bool.ml
dune._caml
dune._dune_lang
dune._ocaml_config
dune._stdune
dune._which-program
dune.configurator
which_program_dune
which_program_jbuilder
1 2 3 4 5 6 7 8 9 10 type t = bool let compare x y = match x, y with | true, true | false, false -> Ordering.Eq | true, false -> Gt | false, true -> Lt let to_string = string_of_bool
1 2 3 4 5 6 7 8 9 10
type t = bool let compare x y = match x, y with | true, true | false, false -> Ordering.Eq | true, false -> Gt | false, true -> Lt let to_string = string_of_bool