Library
Module
Module type
Parameter
Class
Class type
A duration.
A duration.
val days : int -> t
days n
is a duration of n
days.
val hours : int -> t
minutes n
is a duration of n
hours.
val minutes : int -> t
minutes n
is a duration of n
minutes.
val seconds : int -> t
seconds n
is a duration of n
seconds.
val to_days : t -> int
to_days span
is the number of days in span
floored.
val to_seconds : t -> int
to_days span
is the number of seconds in span
floored.
include Base.Comparable.S with type t := t
include Base.Comparisons.S with type t := t
include Base.Comparisons.Infix 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.t
include Base.Comparator.S with type t := t
val comparator : (t, comparator_witness) Base.Comparator.comparator
module O : sig ... end
Convenience module to only pull operators.
val of_ptime : Ptime.Span.t -> t
of_ptime ptime_span
is the span equivalent to ptime_span
.
val to_ptime : t -> Ptime.Span.t
to_ptime span
is the Ptime span equivalent to span
.