package General

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = bool
module O : sig ... end
val equal : t -> t -> bool
val different : t -> t -> bool
val repr : t -> string
val compare : t -> t -> Foundations.Compare.t
val less_than : t -> t -> bool
val less_or_equal : t -> t -> bool
val greater_than : t -> t -> bool
val greater_or_equal : t -> t -> bool
val between : t -> low:t -> high:t -> bool
val between_or_equal : t -> low:t -> high:t -> bool
val min : t -> t -> t
val max : t -> t -> t
val min_max : t -> t -> t * t
val to_string : t -> string
val try_of_string : string -> t option
val of_string : string -> t
val not : t -> t
val and_ : t -> t -> t
val or_ : t -> t -> t
val xor : t -> t -> t