package core
- Overview
- No Docs
You can search for identifiers within the package.
in-package search v0.2.0
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=8c158c12345d36a5cdd71081728f4317b2b04c09eb4126b6de00c482a6fec2a0
md5=b11f58205953d84cedb0003efcdab231
doc/core/Core/Time_ns/index.html
Module Core.Time_ns
include module type of struct include Core_kernel.Time_ns end
with module Span := Core_kernel.Time_ns.Span
with module Ofday := Core_kernel.Time_ns.Ofday
with module Stable := Core_kernel.Time_ns.Stable
type t = private Core_kernel.Int63.tinclude 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.tinclude Bin_prot.Binable.S with type t := t
include Bin_prot.Binable.S_only_functions with type t := t
include Base.Comparisons.S with type t := t
include Base.Comparisons.Infix with type t := t
module Alternate_sexp : sig ... endNote that we expose a sexp format that is not the one exposed in Core.
include Core_kernel.Quickcheck.S_range with type t := t
include Core_kernel.Quickcheck_intf.S with type t := t
val quickcheck_generator : t Base_quickcheck.Generator.tval quickcheck_observer : t Base_quickcheck.Observer.tval quickcheck_shrinker : t Base_quickcheck.Shrinker.tval gen_incl : t -> t -> t Base_quickcheck.Generator.tgen_incl lower_bound upper_bound produces values between lower_bound and upper_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 if lower_bound > upper_bound.
val gen_uniform_incl : t -> t -> t Base_quickcheck.Generator.tgen_uniform_incl lower_bound upper_bound produces a generator for values uniformly distributed between lower_bound and upper_bound, inclusive. Raises if lower_bound > upper_bound.
Comparisons
val is_earlier : t -> than:t -> Base.Bool.tval is_later : t -> than:t -> Base.Bool.tConversions
val of_date_ofday :
zone:Core_kernel__.Zone.t ->
Core_kernel__.Date0.t ->
Core_kernel.Time_ns.Ofday.t ->
tval of_date_ofday_precise :
Core_kernel__.Date0.t ->
Core_kernel.Time_ns.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__.Date0.t * Core_kernel.Time_ns.Ofday.tval to_date_ofday_precise :
t ->
zone:Core_kernel__.Zone.t ->
Core_kernel__.Date0.t
* Core_kernel.Time_ns.Ofday.t
* [ `Only
| `Also_at of t
| `Also_skipped of Core_kernel__.Date0.t * Core_kernel.Time_ns.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:Core_kernel__.Zone.t -> Core_kernel__.Date0.tval to_ofday : t -> zone:Core_kernel__.Zone.t -> Core_kernel.Time_ns.Ofday.tval reset_date_cache : Base.Unit.t -> Base.Unit.tFor 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:Core_kernel__.Zone.t ->
to_tz:Core_kernel__.Zone.t ->
Core_kernel__.Date0.t ->
Core_kernel.Time_ns.Ofday.t ->
Core_kernel__.Date0.t * Core_kernel.Time_ns.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 -> Core_kernel.Time_ns.Span.tOther 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.Interfaces.Stringable with type t := t
val to_filename_string : t -> zone:Core_kernel__.Zone.t -> Base.String.tto_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 : Base.String.t -> zone:Core_kernel__.Zone.t -> tof_filename_string s ~zone converts s that has format YYYY-MM-DD_HH-MM-SS.mmm into time.
val to_string_abs : t -> zone:Core_kernel__.Zone.t -> Base.String.tto_string_abs ~zone t is the same as to_string t except that it uses the given time zone.
val to_string_abs_trimmed : t -> zone:Core_kernel__.Zone.t -> Base.String.tto_string_abs_trimmed is the same as to_string_abs, but drops trailing seconds and milliseconds if they are 0.
val to_string_abs_parts :
t ->
zone:Core_kernel__.Zone.t ->
Base.String.t Base.List.tval to_string_trimmed : t -> zone:Core_kernel__.Zone.t -> Base.String.tSame 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 -> Base.String.tSame as to_string_abs, but without milliseconds
val of_localized_string : zone:Core_kernel__.Zone.t -> Base.String.t -> 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 to_string_iso8601_basic : t -> zone:Core_kernel__.Zone.t -> Base.String.tto_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:Core_kernel.Time_ns.Ofday.t ->
zone:Core_kernel__.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 epoch : tUnix epoch (1970-01-01 00:00:00 UTC)
val min_value_representable : tThe minimum representable time.
val max_value_representable : tThe maximum representable time.
val min_value_for_1us_rounding : tThe minimum time that rounds to a Time.t with microsecond precision.
val max_value_for_1us_rounding : tThe maximum time that rounds to a Time.t with microsecond precision.
val min_value : tAn alias for min_value_for_1us_rounding.
val max_value : tAn alias for max_value_for_1us_rounding.
val now : Base.Unit.t -> tThe current time.
val add : t -> Core_kernel.Time_ns.Span.t -> toverflows silently
val add_saturating : t -> Core_kernel.Time_ns.Span.t -> tAs add; rather than over/underflowing, clamps the result to the closed interval between min_value_representable and max_value_representable.
val sub_saturating : t -> Core_kernel.Time_ns.Span.t -> tAs sub; rather than over/underflowing, clamps the result to the closed interval between min_value_representable and max_value_representable.
val sub : t -> Core_kernel.Time_ns.Span.t -> toverflows silently
val diff : t -> t -> Core_kernel.Time_ns.Span.toverflows silently
val abs_diff : t -> t -> Core_kernel.Time_ns.Span.toverflows silently
val to_span_since_epoch : t -> Core_kernel.Time_ns.Span.tval of_span_since_epoch : Core_kernel.Time_ns.Span.t -> tval to_int63_ns_since_epoch : t -> Core_kernel.Int63.tval of_int63_ns_since_epoch : Core_kernel.Int63.t -> tval to_int_ns_since_epoch : t -> Base.Int.tWill raise on 32-bit platforms. Consider to_int63_ns_since_epoch instead.
val of_int_ns_since_epoch : Base.Int.t -> tval next_multiple :
?can_equal_after:Base.Bool.t ->
base:t ->
after:t ->
interval:Core_kernel.Time_ns.Span.t ->
Base.Unit.t ->
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.
Overflows silently.
val prev_multiple :
?can_equal_before:Base.Bool.t ->
base:t ->
before:t ->
interval:Core_kernel.Time_ns.Span.t ->
Base.Unit.t ->
tprev_multiple ~base ~before ~interval returns the largest time of the form:
time = base + k * intervalwhere k >= 0 and time < before. It is an error if interval <= 0.
Supplying ~can_equal_before:true allows the result to satisfy time <= before.
val random : ?state:Base.Random.State.t -> Base.Unit.t -> tval of_time : Base.Float.t -> tval to_time : t -> Base.Float.t*_round_nearest vs *_round_nearest_microsecond: If you don't know that you need microsecond precision, use the *_round_nearest version. *_round_nearest_microsecond is for historical purposes.
val to_time_float_round_nearest : t -> Base.Float.tval to_time_float_round_nearest_microsecond : t -> Base.Float.tval of_time_float_round_nearest : Base.Float.t -> tval of_time_float_round_nearest_microsecond : Base.Float.t -> tmodule Utc : sig ... endmodule Span : sig ... endval arg_type : t Core_kernel.Command.Arg_type.tmodule Option : sig ... endOption.t is like t option, except that the value is immediate. This module should mainly be used to avoid allocations.
module Ofday : sig ... endSee Time.Ofday.
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_kernel.Identifiable with type t := 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.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 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 variant t afterwards.
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.tinclude Core_kernel.Identifiable.S_common with type t := t
val sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.tinclude Base.Pretty_printer.S with type t := t
val pp : Base.Formatter.t -> t -> unitinclude Core_kernel.Comparable.S_binable with type t := t
include Base.Comparable.S with type t := t
include Base.Comparisons.S with type t := t
compare t1 t2 returns 0 if t1 is equal to t2, a negative integer if t1 is less than t2, and a positive integer if t1 is greater than t2.
ascending 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 := 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.checkmodule Replace_polymorphic_compare :
Base.Comparable.Polymorphic_compare with type t := tinclude Core_kernel.Comparator.S
with type t := t
with type comparator_witness := comparator_witness
val comparator : (t, comparator_witness) Base.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 := t
val hash_fold_t :
Ppx_hash_lib.Std.Hash.state ->
t ->
Ppx_hash_lib.Std.Hash.stateval hash : t -> Ppx_hash_lib.Std.Hash.hash_valueval hashable : t Base.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 = tmodule Zone : sig ... endThese functions are identical to those in Time and get/set the same variable.
val get_sexp_zone : unit -> Zone.tval set_sexp_zone : Zone.t -> unitval t_of_sexp_abs : Core_kernel.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_kernel.Sexp.tval of_date_ofday_zoned : Core_kernel.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:Core_kernel__.Zone.t ->
Core_kernel.Date.t * Ofday.Zoned.tval to_ofday_zoned : t -> zone:Core_kernel__.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_string except that if the string doesn't specify the zone then it raises rather than assume the local timezone.
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 pause : Span.t -> unitpause span sleeps for span time.
interruptible_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.
val pause_forever : unit -> Core_kernel.Nothing.tpause_forever sleeps indefinitely.
module Stable : sig ... end