module type S = sig
.. end
type
t
Type of a period.
val empty : t
The empty period.
val add : t -> t -> t
Addition of periods.
val sub : t -> t -> t
Substraction of periods.
val opp : t -> t
Opposite of a period.
val compare : t -> t -> int
Comparaison function between two periods.
Same behaviour than Pervasives.compare
.
val equal : t -> t -> bool
Equality function between two periods. Same behaviour than (=)
.
Since 1.09.0