package core

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Identifiable.Make_plainSource

Parameters

module M : sig ... end

Signature

include Ppx_compare_lib.Comparable.S with type t := M.t
include Ppx_hash_lib.Hashable.S with type t := M.t
val sexp_of_t : M.t -> Sexplib0.Sexp.t
include Base.Stringable.S with type t := M.t
val of_string : string -> M.t
val to_string : M.t -> string
include Base.Pretty_printer.S with type t := M.t
Sourceval pp : Base.Formatter.t -> M.t -> unit
include Comparable.S_plain with type t := M.t
include Base.Comparable.S with type t := M.t
include Base.Comparisons.S with type t := M.t
include Base.Comparisons.Infix with type t := M.t
Sourceval (>=) : M.t -> M.t -> bool
Sourceval (<=) : M.t -> M.t -> bool
Sourceval (=) : M.t -> M.t -> bool
Sourceval (>) : M.t -> M.t -> bool
Sourceval (<) : M.t -> M.t -> bool
Sourceval (<>) : M.t -> M.t -> bool
Sourceval equal : M.t -> M.t -> bool
Sourceval min : M.t -> M.t -> M.t
Sourceval max : M.t -> M.t -> M.t
Sourceval ascending : M.t -> M.t -> int

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.

Sourceval descending : M.t -> M.t -> int
Sourceval between : M.t -> low:M.t -> high:M.t -> bool

between t ~low ~high means low <= t <= high

Sourceval clamp_exn : M.t -> min:M.t -> max:M.t -> M.t

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).

Sourceval clamp : M.t -> min:M.t -> max:M.t -> M.t Base.Or_error.t
include Base.Comparator.S with type t := M.t
Sourcetype comparator_witness
Sourceval validate_lbound : min:M.t Maybe_bound.t -> M.t Validate.check
Sourceval validate_ubound : max:M.t Maybe_bound.t -> M.t Validate.check
Sourceval validate_bound : min:M.t Maybe_bound.t -> max:M.t Maybe_bound.t -> M.t Validate.check
include Hashable.S_plain with type t := M.t
include Ppx_compare_lib.Comparable.S with type t := M.t
val compare : M.t -> M.t -> int
include Ppx_hash_lib.Hashable.S with type t := M.t
val hash_fold_t : Base.Hash.state -> M.t -> Base.Hash.state
Sourceval hashable : M.t Base.Hashable.t
Sourcemodule Table : Hashtbl.S_plain with type key = M.t
Sourcemodule Hash_set : Hash_set.S_plain with type elt = M.t
Sourcemodule Hash_queue : Hash_queue.S with type key = M.t
OCaml

Innovation. Community. Security.