include Core.Timeinclude Core__.Core_time_intf.S with module Time0 := Core_kernel.Core_kernel_private.Time_float0 and module Time := Core__.Import.Timemodule Time : Core_kernel.Core_kernel_private.Time_intf.S with module Time := Time0module Zone : sig ... endmodule Ofday : sig ... endinclude sig ... endval bin_t : t Bin_prot.Type_class.tval bin_read_t : t Bin_prot.Read.readerval __bin_read_t__ : (int ‑> t) Bin_prot.Read.readerval bin_reader_t : t Bin_prot.Type_class.readerval bin_size_t : t Bin_prot.Size.sizerval bin_write_t : t Bin_prot.Write.writerval bin_writer_t : t Bin_prot.Type_class.writerval bin_shape_t : Bin_prot.Shape.tval hash_fold_t : Base.Hash.state ‑> t ‑> Base.Hash.stateval hash : t ‑> Base.Hash.hash_valueval t_of_sexp : Base.Sexp.t ‑> tval sexp_of_t : t ‑> Base.Sexp.tval typerep_of_t : t Typerep_lib.Std.Typerep.tval typename_of_t : t Typerep_lib.Std.Typename.tinclude module type of Time with type Time.t := t and module Time.Zone := Zone and module Time.Ofday := Ofdaymodule Time = Time.Timeinclude module type of sig ... endval bin_t : t Bin_prot.Type_class.tval bin_read_t : t Bin_prot.Read.readerval __bin_read_t__ : (Core_kernel__.Import.int ‑> t) Bin_prot.Read.readerval bin_reader_t : t Bin_prot.Type_class.readerval bin_size_t : t Bin_prot.Size.sizerval bin_write_t : t Bin_prot.Write.writerval bin_writer_t : t Bin_prot.Type_class.writerval bin_shape_t : Bin_prot.Shape.tval hash_fold_t : Base.Hash.state ‑> t ‑> Base.Hash.stateval hash : t ‑> Base.Hash.hash_valueval typerep_of_t : t Typerep_lib.Std.Typerep.tval typename_of_t : t Typerep_lib.Std.Typename.tmodule Span = Time.Spanmodule Ofday = Time.Ofdaymodule Replace_polymorphic_compare = Time.Replace_polymorphic_compareval clamp : t ‑> min:t ‑> max:t ‑> t Base.Or_error.tval comparator : (t, comparator_witness) Base.Comparator.comparatorval validate_lbound : min:t Base.Maybe_bound.t ‑> t Base.Validate.checkval validate_ubound : max:t Base.Maybe_bound.t ‑> t Base.Validate.checkval validate_bound : min:t Base.Maybe_bound.t ‑> max:t Base.Maybe_bound.t ‑> t Base.Validate.checkmodule Relative_to_unspecified_zone = Time.Relative_to_unspecified_zoneval now : Core_kernel__.Import.unit ‑> tmodule Zone = Time.Zoneadd t s adds the span s to time t and returns the resulting time.
NOTE: adding spans as a means of adding days is not accurate, and may run into trouble due to shifts in daylight savings time, float arithmetic issues, and leap seconds. See the comment at the top of Zone.mli for a more complete discussion of some of the issues of time-keeping. For spans that cross date boundaries, use date functions instead.
sub t s subtracts the span s from time t and returns the
resulting time. See important note for add.
val is_earlier : t ‑> than:t ‑> Core_kernel__.Import.boolval is_later : t ‑> than:t ‑> Core_kernel__.Import.boolval of_date_ofday : zone:Zone.t ‑> Core_kernel.Core_kernel_private.Time_intf.Date.t ‑> Ofday.t ‑> tval of_date_ofday_precise : Core_kernel.Core_kernel_private.Time_intf.Date.t ‑> Ofday.t ‑> zone: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:Zone.t ‑> Core_kernel.Core_kernel_private.Time_intf.Date.t * Ofday.tval to_date_ofday_precise : t ‑> zone:Zone.t ‑> Core_kernel.Core_kernel_private.Time_intf.Date.t * Ofday.t * [ `Only | `Also_at of t | `Also_skipped of Core_kernel.Core_kernel_private.Time_intf.Date.t * Ofday.t ]Always returns the Date.t * Ofday.t that to_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:Zone.t ‑> Core_kernel.Core_kernel_private.Time_intf.Date.tval reset_date_cache : Core_kernel__.Import.unit ‑> Core_kernel__.Import.unitFor performance testing only; reset_date_cache () resets an internal cache used to
speed up to_date and related functions when called repeatedly on times that fall
within the same day.
Unlike Time_ns, this module purposely omits max_value and min_value:
1. They produce unintuitive corner cases because most people's mental models of time
do not include +/- infinity as concrete values
2. In practice, when people ask for these values, it is for questionable uses, e.g.,
as null values to use in place of explicit options.
val convert : from_tz:Zone.t ‑> to_tz:Zone.t ‑> Core_kernel.Core_kernel_private.Time_intf.Date.t ‑> Ofday.t ‑> Core_kernel.Core_kernel_private.Time_intf.Date.t * Ofday.tIt's unspecified what happens if the given date/ofday/zone correspond to more than one date/ofday pair in the other zone.
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 := tval of_string : string ‑> tval to_string : t ‑> stringval to_filename_string : t ‑> zone:Zone.t ‑> Core_kernel__.Import.stringto_filename_string t ~zone converts t 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:Zone.t ‑> tof_filename_string s ~zone converts s that has format YYYY-MM-DD_HH-MM-SS.mmm into
time.
val to_string_trimmed : t ‑> zone:Zone.t ‑> Core_kernel__.Import.stringSame as to_string_abs, but removes trailing seconds and milliseconds
if they are 0
val to_sec_string : t ‑> zone:Zone.t ‑> Core_kernel__.Import.stringSame as to_string_abs, but without milliseconds
val of_localized_string : zone:Zone.t ‑> Core_kernel__.Import.string ‑> tof_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 ‑> Zone.t) ‑> find_zone:(Core_kernel__.Import.string ‑> Zone.t) ‑> Core_kernel__.Import.string ‑> tof_string_gen ~default_zone ~find_zone s attempts to parse s as a t, calling
out to default_zone and find_zone as needed.
val to_string_abs : t ‑> zone:Zone.t ‑> Core_kernel__.Import.stringto_string_abs ~zone t returns a string that represents an absolute time, rather
than a local time with an assumed time zone. This string can be round-tripped, even
on a machine in a different time zone than the machine that wrote the string.
The string will display the date and of-day of zone together with zone as an
offset from UTC.
to_string_abs_trimmed is the same as to_string_abs, but drops trailing seconds
and milliseconds if they are 0.
Note that the difference between to_string and to_string_abs is not that one
returns an absolute time and one doesn't, but that to_string_abs lets you specify
the time zone, while to_string takes it to be the local time zone.
val to_string_abs_trimmed : t ‑> zone:Zone.t ‑> Core_kernel__.Import.stringval to_string_abs_parts : t ‑> zone:Zone.t ‑> Core_kernel__.Import.string Core_kernel__.Import.listval to_string_iso8601_basic : t ‑> zone:Zone.t ‑> Core_kernel__.Import.stringto_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:Zone.t ‑> toccurrence side time ~ofday ~zone returns a Time.t that is the occurrence of
ofday (in the given zone) that is the latest occurrence (<=) time or the
earliest occurrence (>=) time, according to side.
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 next_multiple : ?can_equal_after:Core_kernel__.Import.bool ‑> base:t ‑> after:t ‑> interval:Span.t ‑> Core_kernel__.Import.unit ‑> tnext_multiple ~base ~after ~interval returns the smallest time of the form:
time = base + k * intervalwhere k >= 0 and time > after. It is an error if interval <= 0.
Supplying ~can_equal_after:true allows the result to satisfy time >= after.
Sexp conversions use the local timezone by default. This can be overridden by
calling set_sexp_zone.
The {to,of}_string functions in Time will produce times with time zone
indications, but are generous in what they will read in. String/Sexp.t
representations without time zone indications are assumed to be in the machine's
local zone.
include Core__.Import.Identifiable.S with type t := t and type comparator_witness := comparator_witness and module Replace_polymorphic_compare := Replace_polymorphic_compareinclude sig ... endval bin_t : t Bin_prot.Type_class.tval bin_read_t : t Bin_prot.Read.readerval __bin_read_t__ : (Core_kernel__.Import.int ‑> t) Bin_prot.Read.readerval bin_reader_t : t Bin_prot.Type_class.readerval bin_size_t : t Bin_prot.Size.sizerval bin_write_t : t Bin_prot.Write.writerval bin_writer_t : t Bin_prot.Type_class.writerval bin_shape_t : Bin_prot.Shape.tval hash_fold_t : Base.Hash.state ‑> t ‑> Base.Hash.stateval hash : t ‑> Base.Hash.hash_valueval t_of_sexp : Base.Sexp.t ‑> tval sexp_of_t : t ‑> Base.Sexp.tinclude Core__.Import.Identifiable.S_common with type t := tinclude sig ... endval compare : t ‑> t ‑> Core_kernel__.Import.intval hash_fold_t : Base.Hash.state ‑> t ‑> Base.Hash.stateval hash : t ‑> Base.Hash.hash_valueval sexp_of_t : t ‑> Base.Sexp.tinclude Core_kernel__.Import.Stringable.S with type t := tval of_string : string ‑> tval to_string : t ‑> stringinclude Core_kernel__.Import.Pretty_printer.S with type t := tval pp : Base.Formatter.t ‑> t ‑> unitinclude Core_kernel.Comparable.S_binable with type t := tinclude Core_kernel__.Comparable_intf.S_commoninclude Base.Comparable.Sinclude Base__.Comparable_intf.Polymorphic_compareascending is identical to compare. descending x y = ascending y x. These are
intended to be mnemonic when used like List.sort ~compare:ascending and List.sort
~cmp:descending, since they cause the list to be sorted in ascending or descending
order, respectively.
clamp_exn t ~min ~max returns t', the closest value to t such that
between t' ~low:min ~high:max is true.
Raises if not (min <= max).
val clamp : t ‑> min:t ‑> max:t ‑> t Base.Or_error.tinclude Base.Comparator.S with type t := tval comparator : (t, comparator_witness) Base.Comparator.comparatorinclude Base__.Comparable_intf.Validate with type t := tval validate_lbound : min:t Base.Maybe_bound.t ‑> t Base.Validate.checkval validate_ubound : max:t Base.Maybe_bound.t ‑> t Base.Validate.checkval validate_bound : min:t Base.Maybe_bound.t ‑> max:t Base.Maybe_bound.t ‑> t Base.Validate.checkmodule Replace_polymorphic_compare : Core_kernel__.Comparable_intf.Polymorphic_compare with type t := tinclude Core_kernel__.Comparable_intf.Map_and_set_binable with type t := t with type comparator_witness := comparator_witnessinclude Core_kernel.Comparator.S with type t := tval comparator : (t, comparator_witness) Core_kernel.Comparator.comparatormodule Map : Core_kernel.Map.S_binable with type Key.t = t with type Key.comparator_witness = comparator_witnessmodule Set : Core_kernel.Set.S_binable with type Elt.t = t with type Elt.comparator_witness = comparator_witnessinclude Core_kernel.Hashable.S_binable with type t := tinclude sig ... endval hash_fold_t : Base.Hash.state ‑> t ‑> Base.Hash.stateval hash : t ‑> Base.Hash.hash_valueval hashable : t Core_kernel.Hashtbl.Hashable.tmodule Table : Core_kernel.Hashtbl.S_binable with type key = tmodule Hash_set : Core_kernel.Hash_set.S_binable with type elt = tmodule Hash_queue : Core_kernel.Hash_queue.S with type Key.t = tval get_sexp_zone : unit ‑> Zone.tval set_sexp_zone : Zone.t ‑> unitval of_tm : Core__.Core_unix.tm ‑> zone:Zone.t ‑> tof_tm converts a Unix.tm (mirroring a struct tm from the C stdlib) into a
Time.t. Note that the tm_wday, tm_yday, and tm_isdst fields are ignored.
val to_string_fix_proto : [ `Utc | `Local ] ‑> t ‑> stringval of_string_fix_proto : [ `Utc | `Local ] ‑> string ‑> tval of_string_abs : string ‑> tof_string_abs s is like of_string, but demands that s indicate the timezone
the time is expressed in.
of_string_gen ~if_no_timezone s attempts to parse s to a t. If s doesn't
supply a time zone if_no_timezone is consulted.
val t_of_sexp_abs : Core__.Import.Sexp.t ‑> tt_of_sexp_abs sexp as t_of_sexp, but demands that sexp indicate the timezone
the time is expressed in.
val sexp_of_t_abs : t ‑> zone:Zone.t ‑> Core__.Import.Sexp.tinterruptible_pause span sleeps for span time unless interrupted (e.g. by delivery
of a signal), in which case the remaining unslept portion of time is returned.
format t fmt formats the given time according to fmt, which follows the formatting
rules given in 'man strftime'. The time is output in the given timezone.
%Y - year (4 digits)
%y - year (2 digits)
%m - month
%d - day
%H - hour
%M - minute
%S - seconda common choice would be: %Y-%m-%d %H:%M:%S
parse string ~fmt ~zone parses string, according to fmt, which follows the
formatting rules given in 'man strptime'. The time is assumed to be in the given
timezone.
%Y - year (4 digits)
%y - year (2 digits)
%m - month
%d - day
%H - hour
%M - minute
%S - secondmodule Exposed_for_tests : sig ... endmodule Stable = Core__.Core_time_float.Stableinclude Extended_timemodule Extended_date = Extended_time.Extended_datemodule Extended_span = Extended_time.Extended_span