package base

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

Module Comparable.ComparisonsSource

Parameters

module T : sig ... end

Signature

include Comparisons.Infix with type t := T.t
Sourceval (>=) : T.t -> T.t -> bool
Sourceval (<=) : T.t -> T.t -> bool
Sourceval (=) : T.t -> T.t -> bool
Sourceval (>) : T.t -> T.t -> bool
Sourceval (<) : T.t -> T.t -> bool
Sourceval (<>) : T.t -> T.t -> bool
Sourceval equal : T.t -> T.t -> bool
Sourceval compare : T.t -> T.t -> int

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.

Sourceval min : T.t -> T.t -> T.t
Sourceval max : T.t -> T.t -> T.t
OCaml

Innovation. Community. Security.