Page
Library
Module
Module type
Parameter
Class
Class type
Source
Timmy.MonthA month.
A month.
val days : year:Base.int -> t -> Date.t Base.Sequence.tdays ~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.tof_int n is the t corresponding to the nth month of the year, 1 being January and 12 December.
val to_string : t -> Base.stringto_string month is the english name of month.
val of_string : Base.string -> (t, Base.string) Base.Result.tof_string month is the month corresponding to english name month.
include Base.Comparable.S with type t := tinclude Base.Comparisons.S with type t := tinclude Base.Comparisons.Infix with type t := tcompare 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 := tval comparator : (t, comparator_witness) Base.Comparator.comparatormodule O : sig ... endConvenience module to only pull operators.