You can search for identifiers within the package.
in-package search v0.2.0
Date representation.
type t = Dropbox_date.t
type wday = Dropbox_date.wday =
| Sun
| Mon
| Tue
| Wed
| Thu
| Fri
| Sat
Day of week.
type month = Dropbox_date.month =
| Jan
| Feb
| Mar
| Apr
| May
| Jun
| Jul
| Aug
| Sep
| Oct
| Nov
| Dec
Month.
val day : t -> int
Day of the month (1-31).
val month : t -> month
Month
val year : t -> int
4 digits year
val hour : t -> int
Hour
val min : t -> int
Minutes
val sec : t -> int
Seconds
val wday : t -> wday
Day of week
val to_string : t -> string