Module Core__Core_time_float
include Core__.Core_time_intf.S with module Time0 := Core__.Import.Time and module Time := Core__.Import.Time
module Time : Core__.Import.Time.S_kernel with module Time := Time0module Span : sig ... endmodule Zone : sig ... endmodule Ofday : sig ... endtype t= Time.tA fully qualified point in time, independent of timezone.
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.sizerval bin_write_t : t Bin_prot.Write.writerval bin_read_t : t Bin_prot.Read.readerval __bin_read_t__ : (int -> t) Bin_prot.Read.readerThis function only needs implementation if
texposed 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 varianttafterwards.
val bin_shape_t : Bin_prot.Shape.tval bin_writer_t : t Bin_prot.Type_class.writerval bin_reader_t : t Bin_prot.Type_class.readerval bin_t : t Bin_prot.Type_class.t
val compare : t -> t -> intval hash_fold_t : Base.Hash.state -> t -> Base.Hash.stateval hash : t -> Base.Hash.hash_value
include Ppx_sexp_conv_lib.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> tval sexp_of_t : t -> Sexplib0.Sexp.t
include Typerep_lib.Typerepable.S with type t := t
val typerep_of_t : t Typerep_lib.Std_internal.Typerep.tval typename_of_t : t Typerep_lib.Typename.t
include module type of Time with type Time.t := t and module Time.Zone := Time.Zone and module Time.Ofday := Time.Ofday and module Time.Span := Time.Span
include Core_kernel__.Time_intf.Basic
module Time : Core_kernel__.Time0_intf.Sinclude module type of sig ... end
type underlying= Time.underlyingtype t= Time.t
val bin_size_t : t Bin_prot.Size.sizerval bin_write_t : t Bin_prot.Write.writerval bin_read_t : t Bin_prot.Read.readerval __bin_read_t__ : (int -> t) Bin_prot.Read.readerval bin_shape_t : Bin_prot.Shape.tval bin_writer_t : t Bin_prot.Type_class.writerval bin_reader_t : t Bin_prot.Type_class.readerval bin_t : t Bin_prot.Type_class.tval hash_fold_t : Base.Hash.state -> t -> Base.Hash.stateval hash : t -> Base.Hash.hash_valueval typerep_of_t : t Typerep_lib.Std_internal.Typerep.tval typename_of_t : t Typerep_lib.Typename.t
module Span = Time.Spanmodule Ofday = Time.Ofdaymodule Replace_polymorphic_compare = Time.Replace_polymorphic_compareval (>=.) : t -> t -> boolval (<=.) : t -> t -> boolval (=.) : t -> t -> boolval (>.) : t -> t -> boolval (<.) : t -> t -> boolval (<>.) : t -> t -> boolval robustly_compare : t -> t -> intval add : t -> Span.t -> tval sub : t -> Span.t -> tval diff : t -> t -> Span.tval next : t -> tval prev : t -> tval to_span_since_epoch : t -> Span.tval of_span_since_epoch : Span.t -> tval (>=) : t -> t -> boolval (<=) : t -> t -> boolval (=) : t -> t -> boolval (>) : t -> t -> boolval (<) : t -> t -> boolval (<>) : t -> t -> boolval equal : t -> t -> boolval compare : t -> t -> intval min : t -> t -> tval max : t -> t -> tval ascending : t -> t -> intval descending : t -> t -> intval between : t -> low:t -> high:t -> boolval clamp_exn : t -> min:t -> max:t -> tval clamp : t -> min:t -> max:t -> t Base.Or_error.t
type comparator_witness= Time.comparator_witness
val 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.check
module Date_and_ofday = Time.Date_and_ofdayval next_multiple : ?can_equal_after:Core_kernel__.Import.bool -> base:t -> after:t -> interval:Span.t -> Core_kernel__.Import.unit -> tval prev_multiple : ?can_equal_before:Core_kernel__.Import.bool -> base:t -> before:t -> interval:Span.t -> Core_kernel__.Import.unit -> tval now : Core_kernel__.Import.unit -> t
val now : Core_kernel__.Import.unit -> tnow ()returns atrepresenting the current time
module Zone : Core_kernel__.Time_intf.Zone with module Time := TimeBasic operations on times
val add : t -> Span.t -> tadd t sadds the spansto timetand 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.
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.tval quickcheck_observer : t Base_quickcheck.Observer.tval quickcheck_shrinker : t Base_quickcheck.Shrinker.t
val gen_incl : t -> t -> t Base_quickcheck.Generator.tgen_incl lower_bound upper_boundproduces values betweenlower_boundandupper_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.tgen_uniform_incl lower_bound upper_boundproduces a generator for values uniformly distributed betweenlower_boundandupper_bound, inclusive. Raises iflower_bound > upper_bound.
module Span : sig ... endmodule Ofday : sig ... endComparisons
val is_earlier : t -> than:t -> Core_kernel__.Import.boolval 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 -> tval 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
`Twicewith both occurrences in order; if they do not occur at all, this function gives`Neverwith 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_ofdayrather than this function. In the`Twiceand`Nevercases,of_date_ofdaywill return reasonable times for most uses.
val to_date_ofday : t -> zone:Core_kernel__.Zone.t -> Core_kernel__.Time_intf.Date.t * Ofday.tval 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.tthatto_date_ofdaywould 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.tval to_ofday : t -> zone:Core_kernel__.Zone.t -> Ofday.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 upto_dateand related functions when called repeatedly on times that fall within the same day.
val epoch : tmidnight, 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.tIt'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.stringto_filename_string t ~zoneconvertstto 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 -> tof_filename_string s ~zoneconvertssthat has format YYYY-MM-DD_HH-MM-SS.mmm into time.
val to_string_abs : t -> zone:Core_kernel__.Zone.t -> Core_kernel__.Import.stringto_string_abs ~zone tis the same asto_string texcept that it uses the given time zone.
val to_string_abs_trimmed : t -> zone:Core_kernel__.Zone.t -> Core_kernel__.Import.stringto_string_abs_trimmedis 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.listval to_string_trimmed : t -> zone:Core_kernel__.Zone.t -> Core_kernel__.Import.stringSame 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.stringSame as
to_string_abs, but without milliseconds
val of_localized_string : zone:Core_kernel__.Zone.t -> Core_kernel__.Import.string -> tof_localized_string ~zone strread 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 -> tof_string_gen ~default_zone ~find_zone sattempts to parsesas at, calling out todefault_zoneandfind_zoneas needed.
val to_string_iso8601_basic : t -> zone:Core_kernel__.Zone.t -> Core_kernel__.Import.stringto_string_iso8601_basicreturn 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 -> toccurrence side time ~ofday ~zonereturns aTime.tthat is the occurrence of ofday (in the givenzone) that is the latest occurrence (<=)timeor 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 arg_type : t Core_kernel.Command.Arg_type.t
String conversions use the local timezone by default. Sexp conversions use get_sexp_zone () by default, which can be overridden by calling set_sexp_zone. These default time zones are used when writing a time, and when reading a time with no explicit zone or UTC offset.
Sexps and strings display the date, ofday, and UTC offset of t relative to the appropriate time zone.
include Core__.Import.Identifiable.S with type t := t and type comparator_witness := comparator_witness and module Replace_polymorphic_compare := Replace_polymorphic_compare
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.sizerval bin_write_t : t Bin_prot.Write.writerval bin_read_t : t Bin_prot.Read.readerval __bin_read_t__ : (int -> t) Bin_prot.Read.readerThis function only needs implementation if
texposed 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 varianttafterwards.
val bin_shape_t : Bin_prot.Shape.tval bin_writer_t : t Bin_prot.Type_class.writerval bin_reader_t : t Bin_prot.Type_class.readerval bin_t : t Bin_prot.Type_class.t
val hash_fold_t : Base.Hash.state -> t -> Base.Hash.stateval hash : t -> Base.Hash.hash_value
include Ppx_sexp_conv_lib.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> tval sexp_of_t : t -> Sexplib0.Sexp.t
include Core__.Import.Identifiable.S_common with type t := t
val 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 -> Ppx_sexp_conv_lib.Sexp.t
include Core_kernel__.Import.Stringable.S with type t := t
include Core_kernel__.Import.Pretty_printer.S with type t := t
val pp : Base.Formatter.t -> t -> unit
include Core_kernel.Comparable.S_binable with type t := t
include Core_kernel__.Comparable_intf.S_common
include Base.Comparable.S
include Base__.Comparable_intf.Polymorphic_compare
val ascending : t -> t -> intascendingis identical tocompare.descending x y = ascending y x. These are intended to be mnemonic when used likeList.sort ~compare:ascendingandList.sort ~cmp:descending, since they cause the list to be sorted in ascending or descending order, respectively.
val descending : t -> t -> intval between : t -> low:t -> high:t -> boolbetween t ~low ~highmeanslow <= t <= high
val clamp_exn : t -> min:t -> max:t -> tclamp_exn t ~min ~maxreturnst', the closest value totsuch thatbetween t' ~low:min ~high:maxis true.Raises if
not (min <= max).
val clamp : t -> min:t -> max:t -> t Base.Or_error.t
include Base.Comparator.S with type t := t
val comparator : (t, comparator_witness) Base.Comparator.comparator
include Base__.Comparable_intf.Validate with type t := t
val 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.check
module 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_witness
include Core_kernel.Comparator.S with type t := t
val comparator : (t, comparator_witness) Core_kernel.Comparator.comparator
module 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 := t
val hash_fold_t : Base.Hash.state -> t -> Base.Hash.stateval hash : t -> Base.Hash.hash_value
val hashable : t Core_kernel.Hashtbl.Hashable.t
module 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 = tval of_tm : Core__.Core_unix.tm -> zone:Zone.t -> tof_tmconverts aUnix.tm(mirroring astruct tmfrom the C stdlib) into aTime.t. Note that thetm_wday,tm_yday, andtm_isdstfields are ignored.
val of_date_ofday_zoned : Core__.Import.Date.t -> Ofday.Zoned.t -> tConversion functions that involved Ofday.Zoned.t, exactly analogous to the conversion functions that involve Ofday.t
val to_date_ofday_zoned : t -> zone:Time.Zone.t -> Core__.Import.Date.t * Ofday.Zoned.tval to_ofday_zoned : t -> zone:Time.Zone.t -> Ofday.Zoned.tval to_string_fix_proto : [ `Utc | `Local ] -> t -> stringval of_string_fix_proto : [ `Utc | `Local ] -> string -> tval of_string_abs : string -> tThis is like
of_stringexcept that if the string doesn't specify the zone then it raises rather than assume the local timezone.
val of_string_gen : if_no_timezone:[ `Fail | `Local | `Use_this_one of Zone.t ] -> string -> tof_string_gen ~if_no_timezone sattempts to parsesto at. Ifsdoesn't supply a time zoneif_no_timezoneis consulted.
val t_of_sexp_abs : Core__.Import.Sexp.t -> tt_of_sexp_abs sexpast_of_sexp, but demands thatsexpindicate the timezone the time is expressed in.
val sexp_of_t_abs : t -> zone:Zone.t -> Core__.Import.Sexp.t
Miscellaneous
val pause : Span.t -> unitpause spansleeps for span time.
val interruptible_pause : Span.t -> [ `Ok | `Remaining of Span.t ]interruptible_pause spansleeps for span time unless interrupted (e.g. by delivery of a signal), in which case the remaining unslept portion of time is returned.
val pause_forever : unit -> Core__.Import.never_returnspause_foreversleeps indefinitely.
val format : t -> string -> zone:Zone.t -> stringformat t fmtformats the given time according to fmt, which follows the formatting rules given in 'man strftime'. The time is output in the given timezone. Here are some commonly used control codes:%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
Although %Z and %z are interpreted as format strings, neither are correct in the current implementation. %Z always refers to the local machine timezone, and does not correctly detect whether DST is active. The effective local timezone can be controlled by setting the "TZ" environment variable before calling
format. %z behaves unreliably and should be avoided.Not all strftime control codes are standard; the supported subset will depend on the C libraries linked into a given executable.
val parse : string -> fmt:string -> zone:Zone.t -> tparse string ~fmt ~zoneparsesstring, according tofmt, 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 - second
module Exposed_for_tests : sig ... endmodule Stable : sig ... end