package core_kernel

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
include module type of struct include Time_ns end
module Span = Time_ns.Span
module Ofday = Time_ns.Ofday
val hash_fold_t : Base.Hash.state -> Int63.t -> Base.Hash.state
include Bin_prot.Binable.S with type t := Int63.t
include Bin_prot.Binable.S_only_functions with type t := Int63.t
val bin_size_t : Int63.t Bin_prot.Size.sizer
val bin_write_t : Int63.t Bin_prot.Write.writer
val bin_read_t : Int63.t Bin_prot.Read.reader
val __bin_read_t__ : (int -> Int63.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 variant t afterwards.

val bin_shape_t : Bin_prot.Shape.t
include Base.Comparisons.S with type t := Int63.t
include Base.Comparisons.Infix with type t := Int63.t
val (>=) : Int63.t -> Int63.t -> bool
val (<=) : Int63.t -> Int63.t -> bool
val (=) : Int63.t -> Int63.t -> bool
val (>) : Int63.t -> Int63.t -> bool
val (<) : Int63.t -> Int63.t -> bool
val (<>) : Int63.t -> Int63.t -> bool
val equal : Int63.t -> Int63.t -> bool
val compare : Int63.t -> Int63.t -> int

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.

val min : Int63.t -> Int63.t -> Int63.t
val max : Int63.t -> Int63.t -> Int63.t
module Alternate_sexp = Time_ns.Alternate_sexp

Note that we expose a sexp format that is not the one exposed in Core.

include Quickcheck.S_range with type t := Int63.t
include Quickcheck_intf.S with type t := Int63.t
val quickcheck_generator : Int63.t Base_quickcheck.Generator.t
val quickcheck_observer : Int63.t Base_quickcheck.Observer.t
val quickcheck_shrinker : Int63.t Base_quickcheck.Shrinker.t

gen_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 : Int63.t -> Int63.t -> Int63.t Base_quickcheck.Generator.t

gen_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 : Int63.t -> than:Int63.t -> Base.Bool.t
val is_later : Int63.t -> than:Int63.t -> Base.Bool.t
Conversions
val of_date_ofday : zone:Core_kernel__.Zone.t -> Core_kernel__.Date0.t -> Ofday.t -> Int63.t
val of_date_ofday_precise : Core_kernel__.Date0.t -> Ofday.t -> zone:Core_kernel__.Zone.t -> [ `Once of Int63.t | `Twice of Int63.t * Int63.t | `Never of Int63.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 : Int63.t -> zone:Core_kernel__.Zone.t -> Core_kernel__.Date0.t * Ofday.t
val to_date_ofday_precise : Int63.t -> zone:Core_kernel__.Zone.t -> Core_kernel__.Date0.t * Ofday.t * [ `Only | `Also_at of Int63.t | `Also_skipped of Core_kernel__.Date0.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 : Int63.t -> zone:Core_kernel__.Zone.t -> Core_kernel__.Date0.t
val to_ofday : Int63.t -> zone:Core_kernel__.Zone.t -> Ofday.t
val reset_date_cache : Base.Unit.t -> Base.Unit.t

For 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 -> Ofday.t -> Core_kernel__.Date0.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 : Int63.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 Interfaces.Stringable with type t := Int63.t
val of_string : string -> Int63.t
val to_string : Int63.t -> string
val to_filename_string : Int63.t -> zone:Core_kernel__.Zone.t -> Base.String.t

to_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 -> Int63.t

of_filename_string s ~zone converts s that has format YYYY-MM-DD_HH-MM-SS.mmm into time.

val to_string_abs : Int63.t -> zone:Core_kernel__.Zone.t -> Base.String.t

to_string_abs ~zone t is the same as to_string t except that it uses the given time zone.

val to_string_abs_trimmed : Int63.t -> zone:Core_kernel__.Zone.t -> Base.String.t

to_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 : Int63.t -> zone:Core_kernel__.Zone.t -> Base.String.t Base.List.t
val to_string_trimmed : Int63.t -> zone:Core_kernel__.Zone.t -> Base.String.t

Same as to_string_abs_trimmed, except it leaves off the timezone, so won't reliably round trip.

val to_sec_string : Int63.t -> zone:Core_kernel__.Zone.t -> Base.String.t

Same as to_string_abs, but without milliseconds

val of_localized_string : zone:Core_kernel__.Zone.t -> Base.String.t -> Int63.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:(Base.Unit.t -> Core_kernel__.Zone.t) -> find_zone:(Base.String.t -> Core_kernel__.Zone.t) -> Base.String.t -> Int63.t

of_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_iso8601_basic : Int63.t -> zone:Core_kernel__.Zone.t -> Base.String.t

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 ] -> Int63.t -> ofday:Ofday.t -> zone:Core_kernel__.Zone.t -> Int63.t

occurrence 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 : Int63.t

Unix epoch (1970-01-01 00:00:00 UTC)

val min_value_representable : Int63.t

The minimum representable time.

val max_value_representable : Int63.t

The maximum representable time.

val min_value_for_1us_rounding : Int63.t

The minimum time that rounds to a Time.t with microsecond precision.

val max_value_for_1us_rounding : Int63.t

The maximum time that rounds to a Time.t with microsecond precision.

val min_value : Int63.t

An alias for min_value_for_1us_rounding.

  • deprecated [since 2019-02] use [min_value_representable] or [min_value_for_1us_rounding] instead
val max_value : Int63.t

An alias for max_value_for_1us_rounding.

  • deprecated [since 2019-02] use [max_value_representable] or [max_value_for_1us_rounding] instead
val now : Base.Unit.t -> Int63.t

The current time.

val add : Int63.t -> Span.t -> Int63.t

overflows silently

val add_saturating : Int63.t -> Span.t -> Int63.t

As add; rather than over/underflowing, clamps the result to the closed interval between min_value_representable and max_value_representable.

val sub_saturating : Int63.t -> Span.t -> Int63.t

As sub; rather than over/underflowing, clamps the result to the closed interval between min_value_representable and max_value_representable.

val sub : Int63.t -> Span.t -> Int63.t

overflows silently

val next : Int63.t -> Int63.t

overflows silently

val prev : Int63.t -> Int63.t

overflows silently

val diff : Int63.t -> Int63.t -> Span.t

overflows silently

val abs_diff : Int63.t -> Int63.t -> Span.t

overflows silently

val to_span_since_epoch : Int63.t -> Span.t
val of_span_since_epoch : Span.t -> Int63.t
val to_int63_ns_since_epoch : Int63.t -> Int63.t
val of_int63_ns_since_epoch : Int63.t -> Int63.t
val to_int_ns_since_epoch : Int63.t -> Base.Int.t

Will raise on 32-bit platforms. Consider to_int63_ns_since_epoch instead.

val of_int_ns_since_epoch : Base.Int.t -> Int63.t
val next_multiple : ?can_equal_after:Base.Bool.t -> base:Int63.t -> after:Int63.t -> interval:Span.t -> Base.Unit.t -> Int63.t

next_multiple ~base ~after ~interval returns the smallest time of the form:

time = base + k * interval

where 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:Int63.t -> before:Int63.t -> interval:Span.t -> Base.Unit.t -> Int63.t

prev_multiple ~base ~before ~interval returns the largest time of the form:

time = base + k * interval

where 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 -> Int63.t
val of_time : Base.Float.t -> Int63.t
  • deprecated [since 2019-01] use [of_time_float_round_nearest] or [of_time_float_round_nearest_microsecond]
val to_time : Int63.t -> Base.Float.t
  • deprecated [since 2019-01] use [to_time_float_round_nearest] or [to_time_float_round_nearest_microsecond]

*_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 : Int63.t -> Base.Float.t
val to_time_float_round_nearest_microsecond : Int63.t -> Base.Float.t
val of_time_float_round_nearest : Base.Float.t -> Int63.t
val of_time_float_round_nearest_microsecond : Base.Float.t -> Int63.t
module Utc = Time_ns.Utc
module Stable = Time_ns.Stable
include module type of struct include Alternate_sexp end

Note that we expose a sexp format that is not the one exposed in Core.

type nonrec t = Int63.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