Library
Module
Module type
Parameter
Class
Class type
A point in time.
A point in time.
type js = Js_of_ocaml.Js.date Js_of_ocaml.Js.t
Time representation in javascript.
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 : t
epoch
is January 1, 1970 00:00:00 UTC/GMT.
include Base.Comparable.S with type t := t
val comparator : (t, comparator_witness) Base__Comparator.comparator
module O : sig ... end
Convenience module to only pull operators.
val pp : t Fmt.t
pp f date
prints date
to f
in an unspecified, human readable format.
val to_string : ?timezone:Timezone.t -> t -> Base.string
to_string time
is the RCF3339 representation of time
, eg. 2021-10-04.
val of_string : Base.string -> (t, Base.string) Base.Result.t
of_string s
is the time represented by s
as per RCF3339 or a relevant error message if it is invalid.
val to_rfc3339 : ?timezone:Timezone.t -> t -> Base.string
of_rfc3339
is to_string
.
val of_ptime : Ptime.t -> t
of_ptime ptime
is the time equivalent to ptime
.
val to_ptime : t -> Ptime.t
to_ptime time
is the Ptime time equivalent to time
.