Module Async_kernel__.Time_ns
include Core_kernel.Core_kernel_private.Time_ns_alternate_sexp
include Core_kernel.Time_ns
module Span : Core_kernel__.Time_ns_intf.Span
module Ofday : Core_kernel__.Time_ns_intf.Ofday with module Span := Span
type t
= private Core_kernel.Int63.t
val hash_fold_t : Base.Hash.state -> t -> Base.Hash.state
val hash : t -> Base.Hash.hash_value
include Typerep_lib.Typerepable.S with type t := t
val typerep_of_t : t Typerep_lib.Std_internal.Typerep.t
val typename_of_t : t Typerep_lib.Typename.t
include Bin_prot.Binable.S with type t := t
include Bin_prot.Binable.S_only_functions with type t := t
val bin_size_t : t Bin_prot.Size.sizer
val bin_write_t : t Bin_prot.Write.writer
val bin_read_t : t Bin_prot.Read.reader
val __bin_read_t__ : (int -> t) Bin_prot.Read.reader
This function only needs implementation if
t
exposed to be a polymorphic variant. Despite what the type reads, this does *not* produce a function after reading; instead it takes the constructor tag (int) before reading and reads the rest of the variantt
afterwards.
val bin_shape_t : Bin_prot.Shape.t
val bin_writer_t : t Bin_prot.Type_class.writer
val bin_reader_t : t Bin_prot.Type_class.reader
val bin_t : t Bin_prot.Type_class.t
module Alternate_sexp : sig ... end
Note that we expose a sexp format that is not the one exposed in
Core
.
include Core_kernel__.Time_intf.Shared with type t := t with module Span := Span with module Ofday := Ofday
include Core_kernel.Quickcheck.S_range with type t := t
include Core_kernel.Quickcheck_intf.S
val quickcheck_generator : t Base_quickcheck.Generator.t
val quickcheck_observer : t Base_quickcheck.Observer.t
val quickcheck_shrinker : t Base_quickcheck.Shrinker.t
val gen_incl : t -> t -> t Base_quickcheck.Generator.t
gen_incl lower_bound upper_bound
produces values betweenlower_bound
andupper_bound
, inclusive. It uses an ad hoc distribution that stresses boundary conditions more often than a uniform distribution, while still able to produce any value in the range. Raises iflower_bound > upper_bound
.
val gen_uniform_incl : t -> t -> t Base_quickcheck.Generator.t
gen_uniform_incl lower_bound upper_bound
produces a generator for values uniformly distributed betweenlower_bound
andupper_bound
, inclusive. Raises iflower_bound > upper_bound
.
module Span : sig ... end
module Ofday : sig ... end
Comparisons
val is_earlier : t -> than:t -> Core_kernel__.Import.bool
val is_later : t -> than:t -> Core_kernel__.Import.bool
Conversions
val of_date_ofday : zone:Core_kernel__.Zone.t -> Core_kernel__.Time_intf.Date.t -> Ofday.t -> t
val of_date_ofday_precise : Core_kernel__.Time_intf.Date.t -> Ofday.t -> zone:Core_kernel__.Zone.t -> [ `Once of t | `Twice of t * t | `Never of t ]
Because timezone offsets change throughout the year (clocks go forward or back) some local times can occur twice or not at all. In the case that they occur twice, this function gives
`Twice
with both occurrences in order; if they do not occur at all, this function gives`Never
with the time at which the local clock skips over the desired time of day.Note that this is really only intended to work with DST transitions and not unusual or dramatic changes, like the calendar change in 1752 (run "cal 9 1752" in a shell to see). In particular it makes the assumption that midnight of each day is unambiguous.
Most callers should use
of_date_ofday
rather than this function. In the`Twice
and`Never
cases,of_date_ofday
will return reasonable times for most uses.
val to_date_ofday : t -> zone:Core_kernel__.Zone.t -> Core_kernel__.Time_intf.Date.t * Ofday.t
val to_date_ofday_precise : t -> zone:Core_kernel__.Zone.t -> Core_kernel__.Time_intf.Date.t * Ofday.t * [ `Only | `Also_at of t | `Also_skipped of Core_kernel__.Time_intf.Date.t * Ofday.t ]
Always returns the
Date.t * Ofday.t
thatto_date_ofday
would have returned, and in addition returns a variant indicating whether the time is associated with a time zone transition.- `Only -> there is a one-to-one mapping between [t]'s and [Date.t * Ofday.t] pairs - `Also_at -> there is another [t] that maps to the same [Date.t * Ofday.t] (this date/time pair happened twice because the clock fell back) - `Also_skipped -> there is another [Date.t * Ofday.t] pair that never happened (due to a jump forward) that [of_date_ofday] would map to the same [t].
val to_date : t -> zone:Core_kernel__.Zone.t -> Core_kernel__.Time_intf.Date.t
val to_ofday : t -> zone:Core_kernel__.Zone.t -> Ofday.t
val reset_date_cache : Core_kernel__.Import.unit -> Core_kernel__.Import.unit
For performance testing only;
reset_date_cache ()
resets an internal cache used to speed upto_date
and related functions when called repeatedly on times that fall within the same day.
val epoch : t
midnight, Jan 1, 1970 in UTC
val convert : from_tz:Core_kernel__.Zone.t -> to_tz:Core_kernel__.Zone.t -> Core_kernel__.Time_intf.Date.t -> Ofday.t -> Core_kernel__.Time_intf.Date.t * Ofday.t
It's unspecified what happens if the given date/ofday/zone correspond to more than one date/ofday pair in the other zone.
val utc_offset : t -> zone:Core_kernel__.Zone.t -> Span.t
Other string conversions
The {to,of}_string
functions in Time
convert to UTC time, because a local time zone is not necessarily available. They are generous in what they will read in.
include Core_kernel__.Std_internal.Stringable with type t := t
val to_filename_string : t -> zone:Core_kernel__.Zone.t -> Core_kernel__.Import.string
to_filename_string t ~zone
convertst
to string with format YYYY-MM-DD_HH-MM-SS.mmm which is suitable for using in filenames.
val of_filename_string : Core_kernel__.Import.string -> zone:Core_kernel__.Zone.t -> t
of_filename_string s ~zone
convertss
that has format YYYY-MM-DD_HH-MM-SS.mmm into time.
val to_string_abs : t -> zone:Core_kernel__.Zone.t -> Core_kernel__.Import.string
to_string_abs ~zone t
is the same asto_string t
except that it uses the given time zone.
val to_string_abs_trimmed : t -> zone:Core_kernel__.Zone.t -> Core_kernel__.Import.string
to_string_abs_trimmed
is the same asto_string_abs
, but drops trailing seconds and milliseconds if they are 0.
val to_string_abs_parts : t -> zone:Core_kernel__.Zone.t -> Core_kernel__.Import.string Core_kernel__.Import.list
val to_string_trimmed : t -> zone:Core_kernel__.Zone.t -> Core_kernel__.Import.string
Same as
to_string_abs_trimmed
, except it leaves off the timezone, so won't reliably round trip.
val to_sec_string : t -> zone:Core_kernel__.Zone.t -> Core_kernel__.Import.string
Same as
to_string_abs
, but without milliseconds
val of_localized_string : zone:Core_kernel__.Zone.t -> Core_kernel__.Import.string -> t
of_localized_string ~zone str
read in the given string assuming that it represents a time in zone and return the appropriate Time.t
val of_string_gen : default_zone:(Core_kernel__.Import.unit -> Core_kernel__.Zone.t) -> find_zone:(Core_kernel__.Import.string -> Core_kernel__.Zone.t) -> Core_kernel__.Import.string -> t
of_string_gen ~default_zone ~find_zone s
attempts to parses
as at
, calling out todefault_zone
andfind_zone
as needed.
val to_string_iso8601_basic : t -> zone:Core_kernel__.Zone.t -> Core_kernel__.Import.string
to_string_iso8601_basic
return a string representation of the following form: %Y-%m-%dT%H:%M:%S.%s%Z e.g.to_string_iso8601_basic ~zone:Time.Zone.utc epoch = "1970-01-01T00:00:00.000000Z"
val occurrence : [ `First_after_or_at | `Last_before_or_at ] -> t -> ofday:Ofday.t -> zone:Core_kernel__.Zone.t -> t
occurrence side time ~ofday ~zone
returns aTime.t
that is the occurrence of ofday (in the givenzone
) that is the latest occurrence (<=)time
or the earliest occurrence (>=)time
, according toside
.NOTE: If the given time converted to wall clock time in the given zone is equal to ofday then the t returned will be equal to the t given.
val epoch : t
Unix epoch (1970-01-01 00:00:00 UTC)
val min_value_representable : t
The minimum representable time.
val max_value_representable : t
The maximum representable time.
val min_value_for_1us_rounding : t
The minimum time that rounds to a
Time.t
with microsecond precision.
val max_value_for_1us_rounding : t
The maximum time that rounds to a
Time.t
with microsecond precision.
val min_value : t
An alias for
min_value_for_1us_rounding
.
val max_value : t
An alias for
max_value_for_1us_rounding
.
val now : Core_kernel__.Import.unit -> t
The current time.
val add_saturating : t -> Span.t -> t
As
add
; rather than over/underflowing, clamps the result to the closed interval betweenmin_value_representable
andmax_value_representable
.
val sub_saturating : t -> Span.t -> t
As
sub
; rather than over/underflowing, clamps the result to the closed interval betweenmin_value_representable
andmax_value_representable
.
val to_span_since_epoch : t -> Span.t
val of_span_since_epoch : Span.t -> t
val to_int63_ns_since_epoch : t -> Core_kernel.Int63.t
val of_int63_ns_since_epoch : Core_kernel.Int63.t -> t
val to_int_ns_since_epoch : t -> Core_kernel__.Import.int
Will raise on 32-bit platforms. Consider
to_int63_ns_since_epoch
instead.
val of_int_ns_since_epoch : Core_kernel__.Import.int -> t
val next_multiple : ?can_equal_after:Core_kernel__.Import.bool -> base:t -> after:t -> interval:Span.t -> Core_kernel__.Import.unit -> t
next_multiple ~base ~after ~interval
returns the smallesttime
of the form:time = base + k * interval
where
k >= 0
andtime > after
. It is an error ifinterval <= 0
.Supplying
~can_equal_after:true
allows the result to satisfytime >= after
.Overflows silently.
val prev_multiple : ?can_equal_before:Core_kernel__.Import.bool -> base:t -> before:t -> interval:Span.t -> Core_kernel__.Import.unit -> t
prev_multiple ~base ~before ~interval
returns the largesttime
of the form:time = base + k * interval
where
k >= 0
andtime < before
. It is an error ifinterval <= 0
.Supplying
~can_equal_before:true
allows the result to satisfytime <= before
.
val random : ?state:Core_kernel__.Import.Random.State.t -> Core_kernel__.Import.unit -> t
val of_time : Core_kernel__.Time_float.t -> t
val to_time : t -> Core_kernel__.Time_float.t
val to_time_float_round_nearest : t -> Core_kernel__.Time_float.t
val to_time_float_round_nearest_microsecond : t -> Core_kernel__.Time_float.t
val of_time_float_round_nearest : Core_kernel__.Time_float.t -> t
val of_time_float_round_nearest_microsecond : Core_kernel__.Time_float.t -> t
module Utc : sig ... end
module Stable : sig ... end
include Alternate_sexp
type nonrec t
= t
include Ppx_sexp_conv_lib.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t
val after : Core_kernel__Time_ns.t -> Span.t -> Core_kernel__Time_ns.t