CCEqualEquality Combinators
val poly : 'a tStandard polymorphic equality.
val physical : 'a tStandard physical equality.
val int : int tval string : string tval bool : bool tval float : float tval unit : unit tmap f eq is the equality function that, given objects x and y, projects x and y using f (e.g. using a record field) and then compares those projections with eq. Example: map fst int compares values of type (int * 'a) by their first component.
val always_eq : _ tAlways returns true. All values are equal.
val never_eq : _ tAlways returns false. No values are, so this is not even reflexive (i.e. x=x is false). Be careful!
module Infix : sig ... end