Library
Module
Module type
Parameter
Class
Class type
A month.
A month.
val days : year:Base.int -> t -> Date.t Base.Sequence.t
days ~year month
is the sequence of days in month
of year year
in chronological order.
to_date ~year month
is the first day of month month
in year year
to_int month
is the 1-based index of month
in the year, ie. 1 is January and 12 is December.
val of_int : Base.int -> (t, Base.string) Base.Result.t
of_int n
is the t
corresponding to the n
th month of the year, 1 being January and 12 December.
val to_string : t -> Base.string
to_string month
is the english name of month
.
val of_string : Base.string -> (t, Base.string) Base.Result.t
of_string month
is the month corresponding to english name month
.
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.