package apero-time

  1. Overview
  2. Docs

Source file physical_time.ml

1
2
3
4
5
6
7
8
9
open Time

module type Physical_time = sig
  include Time

  val of_seconds: float -> t
  val to_seconds: t -> float

end