MakeEq.E
type t
The type of elements to check for equality.
val equal : t -> t -> bool
equal a b is true if and only if a and b are equal. This should satisfy the following properties:
equal a b
true
a
b
equal a a = true
equal b a
equal a b = true
equal b c = true
equal a c = true
val (=) : t -> t -> bool
Operator alias of equal.
equal
val (<>) : t -> t -> bool
Negation of operator (=).
(=)