module Second:Time_sig.Second
with type t = second
Second implementation
type
t
Type of seconds.
val from_int : int -> t
Convert an integer to an equivalent number of seconds.
val from_float : float -> t
Convert a float to an equivalent number of seconds.
val to_int : t -> int
Inverse of from_int
.
val to_float : t -> float
Inverse of from_float
.