module type Second =sig..end
Interface for seconds.
type t
Type of seconds.
val from_int : int -> tConvert an integer to an equivalent number of seconds.
val from_float : float -> tConvert a float to an equivalent number of seconds.
val to_int : t -> intInverse of from_int.
val to_float : t -> floatInverse of from_float.