Timmy_jsoo.Timeinclude module type of Timmy.Timetype t = Timmy.Time.tA point in time.
Timmy leaves the burden of determining the current time to Ptime_clock. Pick the right ptime.clock library for your platform and use Timmy.Time.of_ptime (Ptime_clock.now ()).
val epoch : Timmy.Time.tepoch is January 1, 1970 00:00:00 UTC/GMT.
include Base.Comparable.S with type t := tval equal : Timmy.Time.t -> Timmy.Time.t -> boolval compare : Timmy.Time.t -> Timmy.Time.t -> intval min : Timmy.Time.t -> Timmy.Time.t -> Timmy.Time.tval max : Timmy.Time.t -> Timmy.Time.t -> Timmy.Time.tval ascending : Timmy.Time.t -> Timmy.Time.t -> intval descending : Timmy.Time.t -> Timmy.Time.t -> intval between : Timmy.Time.t -> low:Timmy.Time.t -> high:Timmy.Time.t -> boolval clamp_exn :
Timmy.Time.t ->
min:Timmy.Time.t ->
max:Timmy.Time.t ->
Timmy.Time.tval clamp :
Timmy.Time.t ->
min:Timmy.Time.t ->
max:Timmy.Time.t ->
Timmy.Time.t Base__.Or_error.ttype comparator_witness = Timmy.Time.comparator_witnessval comparator : (Timmy.Time.t, comparator_witness) Base__Comparator.comparatormodule O = Timmy.Time.OConvenience module to only pull operators.
include module type of Oinclude Base.Comparable.Infix with type t := Timmy__.Time.tval (>=) : Timmy.Time.t -> Timmy.Time.t -> boolval (<=) : Timmy.Time.t -> Timmy.Time.t -> boolval (=) : Timmy.Time.t -> Timmy.Time.t -> boolval (>) : Timmy.Time.t -> Timmy.Time.t -> boolval (<) : Timmy.Time.t -> Timmy.Time.t -> boolval (<>) : Timmy.Time.t -> Timmy.Time.t -> boolval (+) : Timmy.Time.t -> Span.t -> Timmy.Time.ttime + span is the time point span after time.
val (-) : Timmy.Time.t -> Timmy.Time.t -> Span.tend - start is the duration elapsed from start to end.
val pp : Timmy.Time.t Fmt.tpp f date prints date to f in an unspecified, human readable format.
val to_string : ?timezone:Timmy.Timezone.t -> Timmy.Time.t -> Base.stringto_string time is the RCF3339 representation of time, eg. 2021-10-04.
val of_string : Base.string -> (Timmy.Time.t, Base.string) Base.Result.tof_string s is the time represented by s as per RCF3339 or a relevant error message if it is invalid.
val to_rfc3339 : ?timezone:Timmy.Timezone.t -> Timmy.Time.t -> Base.stringof_rfc3339 is to_string.
val of_rfc3339 : Base.string -> (Timmy.Time.t, Base.string) Base.Result.tof_rfc3339 is of_string.
val of_ptime : Ptime.t -> Timmy.Time.tof_ptime ptime is the time equivalent to ptime.
val to_ptime : Timmy.Time.t -> Ptime.tto_ptime time is the Ptime time equivalent to time.
val to_js : Timmy.Time.t -> Js_of_ocaml.Js.date Js_of_ocaml.Js.tval of_js : Js_of_ocaml.Js.date Js_of_ocaml.Js.t -> Timmy.Time.t