Timmy_jsoo.Time
include module type of Timmy.Time
A point in time.
A point in time.
type t = Timmy.Time.t
A point in time.
val schema_versioned :
Schematic.Schema.version ->
Timmy.Time.t Schematic.Schema.t
val schema : Timmy.Time.t Schematic.Schema.t
Time schema.
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.t
epoch
is January 1, 1970 00:00:00 UTC/GMT.
include Base.Comparable.S with type t := t
val equal : Timmy.Time.t -> Timmy.Time.t -> bool
val compare : Timmy.Time.t -> Timmy.Time.t -> int
val min : Timmy.Time.t -> Timmy.Time.t -> Timmy.Time.t
val max : Timmy.Time.t -> Timmy.Time.t -> Timmy.Time.t
val ascending : Timmy.Time.t -> Timmy.Time.t -> int
val descending : Timmy.Time.t -> Timmy.Time.t -> int
val between : Timmy.Time.t -> low:Timmy.Time.t -> high:Timmy.Time.t -> bool
val clamp_exn :
Timmy.Time.t ->
min:Timmy.Time.t ->
max:Timmy.Time.t ->
Timmy.Time.t
val clamp :
Timmy.Time.t ->
min:Timmy.Time.t ->
max:Timmy.Time.t ->
Timmy.Time.t Base__.Or_error.t
type comparator_witness = Timmy.Time.comparator_witness
val comparator : (Timmy.Time.t, comparator_witness) Base__Comparator.comparator
module O = Timmy.Time.O
Convenience module to only pull operators.
include module type of O
Convenience module to only pull operators.
Convenience module to only pull operators.
Convenience module to only pull operators.
include Base.Comparable.Infix with type t := Timmy__.Time.t
val (>=) : Timmy.Time.t -> Timmy.Time.t -> bool
val (<=) : Timmy.Time.t -> Timmy.Time.t -> bool
val (=) : Timmy.Time.t -> Timmy.Time.t -> bool
val (>) : Timmy.Time.t -> Timmy.Time.t -> bool
val (<) : Timmy.Time.t -> Timmy.Time.t -> bool
val (<>) : Timmy.Time.t -> Timmy.Time.t -> bool
val (+) : Timmy.Time.t -> Span.t -> Timmy.Time.t
time + span
is the time point span
after time
.
val (-) : Timmy.Time.t -> Timmy.Time.t -> Span.t
end - start
is the duration elapsed from start
to end
.
val pp : Timmy.Time.t Fmt.t
pp f date
prints date
to f
in an unspecified, human readable format.
val to_string : ?timezone:Timmy.Timezone.t -> Timmy.Time.t -> Base.string
to_string time
is the RCF3339 representation of time
, eg. 2021-10-04.
val of_string : Base.string -> (Timmy.Time.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:Timmy.Timezone.t -> Timmy.Time.t -> Base.string
of_rfc3339
is to_string
.
val of_rfc3339 : Base.string -> (Timmy.Time.t, Base.string) Base.Result.t
of_rfc3339
is of_string
.
val of_ptime : Ptime.t -> Timmy.Time.t
of_ptime ptime
is the time equivalent to ptime
.
val to_ptime : Timmy.Time.t -> Ptime.t
to_ptime time
is the Ptime time equivalent to time
.
val to_js : Timmy.Time.t -> js
val of_js : js -> Timmy.Time.t