Library
Module
Module type
Parameter
Class
Class type
A month.
A month.
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
val to_int : t -> Base.int
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 pp : t Fmt.t
pp f month
pretty-prints month
to f
as its english name.
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
val comparator : (t, comparator_witness) Base__Comparator.comparator
module O : sig ... end
Convenience module to only pull operators.