package core
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=6f7bbdda1d97f2f542a45331f062127dd5264d6ed73ece7b2c6b330785dfc991
doc/core/Core/Bool/index.html
Module Core.Bool
This module extends Base.Bool.
include Bin_prot.Binable.S with type t := t
include Bin_prot.Binable.S_only_functions with type t := t
include Typerep_lib.Typerepable.S with type t := t
val typerep_of_t : t Typerep_lib.Std_internal.Typerep.tval typename_of_t : t Typerep_lib.Typename.tinclude module type of Base.Bool with type t := t
val all : t listinclude Sexplib0.Sexpable.S with type t := t
val t_sexp_grammar : t Sexplib0.Sexp_grammar.tinclude Base.Identifiable.S with type t := t
include Sexplib0.Sexpable.S with type t := t
include Base.Stringable.S with type t := t
include Base.Comparable.S with type t := t
include Base.Comparisons.S with type t := t
include Base.Comparisons.Infix with type t := t
include Base.Comparator.S with type t := t
type comparator_witness = Base.Bool.comparator_witnessinclude Base.Pretty_printer.S with type t := t
include Base.Invariant.S with type t := t
val invariant : t -> unitval to_int : t -> intto_int true = 1to_int false = 0
module Non_short_circuiting = Base.Bool.Non_short_circuitinginclude Identifiable.S
with type t := t
and type comparator_witness := Base.Bool.comparator_witness
include Bin_prot.Binable.S with type t := t
include Bin_prot.Binable.S_only_functions with type t := t
val bin_size_t : t Bin_prot.Size.sizerval bin_write_t : t Bin_prot.Write.writerval bin_read_t : t Bin_prot.Read.readerval __bin_read_t__ : (int -> t) Bin_prot.Read.readerThis function only needs implementation if t exposed to be a polymorphic variant. Despite what the type reads, this does *not* produce a function after reading; instead it takes the constructor tag (int) before reading and reads the rest of the variant t afterwards.
val bin_shape_t : Bin_prot.Shape.tval bin_writer_t : t Bin_prot.Type_class.writerval bin_reader_t : t Bin_prot.Type_class.readerval bin_t : t Bin_prot.Type_class.tinclude Ppx_hash_lib.Hashable.S with type t := t
include Sexplib0.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> tinclude Ppx_compare_lib.Comparable.S with type t := t
include Ppx_hash_lib.Hashable.S with type t := t
val sexp_of_t : t -> Sexplib0.Sexp.tinclude Base.Pretty_printer.S with type t := t
val pp : Base.Formatter.t -> t -> unitinclude Comparable.S_binable
with type t := t
with type comparator_witness := Base.Bool.comparator_witness
include Base.Comparable.S
with type t := t
with type comparator_witness := Base.Bool.comparator_witness
include Base.Comparisons.S with type t := t
compare t1 t2 returns 0 if t1 is equal to t2, a negative integer if t1 is less than t2, and a positive integer if t1 is greater than t2.
ascending is identical to compare. descending x y = ascending y x. These are intended to be mnemonic when used like List.sort ~compare:ascending and List.sort ~cmp:descending, since they cause the list to be sorted in ascending or descending order, respectively.
clamp_exn t ~min ~max returns t', the closest value to t such that between t' ~low:min ~high:max is true.
Raises if not (min <= max).
val clamp : t -> min:t -> max:t -> t Base.Or_error.tinclude Base.Comparator.S
with type t := t
with type comparator_witness := Base.Bool.comparator_witness
val validate_lbound : min:t Maybe_bound.t -> t Validate.checkval validate_ubound : max:t Maybe_bound.t -> t Validate.checkval validate_bound :
min:t Maybe_bound.t ->
max:t Maybe_bound.t ->
t Validate.checkmodule Replace_polymorphic_compare :
Base.Comparable.Polymorphic_compare with type t := tinclude Comparator.S
with type t := t
with type comparator_witness := Base.Bool.comparator_witness
val comparator : (t, Base.Bool.comparator_witness) Base.Comparator.comparatormodule Map :
Map.S_binable
with type Key.t = t
with type Key.comparator_witness = Base.Bool.comparator_witnessmodule Set :
Set.S_binable
with type Elt.t = t
with type Elt.comparator_witness = Base.Bool.comparator_witnessinclude Hashable.S_binable with type t := t
include Ppx_hash_lib.Hashable.S with type t := t
val hash_fold_t : Base.Hash.state -> t -> Base.Hash.stateval hash : t -> Base.Hash.hash_valueval hashable : t Base.Hashable.tmodule Table : Hashtbl.S_binable with type key = tmodule Hash_set : Hash_set.S_binable with type elt = tmodule Hash_queue : Hash_queue.S with type key = tval of_string_hum : string -> tHuman readable parsing. Accepted inputs are (case insensitive):
- true/false
- yes/no
- 1/0
- t/f
- y/n
include Quickcheckable.S with type t := t
val quickcheck_generator : t Base_quickcheck.Generator.tval quickcheck_observer : t Base_quickcheck.Observer.tval quickcheck_shrinker : t Base_quickcheck.Shrinker.tmodule Stable : sig ... end