You can search for identifiers within the package.
in-package search v0.2.0
type weekday = [
| `Monday
| `Tuesday
| `Wednesday
| `Thursday
| `Friday
| `Saturday
| `Sunday
]
type month = [
| `January
| `February
| `March
| `April
| `May
| `June
| `July
| `August
| `September
| `October
| `November
| `December
type year = int
type day = int
type tz_internal = int
type tz =
| UTC
| Local
| Plus of tz_internal
type human_readable = {
s : int;
m : int;
h : int;
day : day;
wday : weekday;
month : month;
year : year;
tz : tz;
}
type parser_
type printer
type format = string
module type Clock = sig ... end
module type Implem = sig ... end
module Hour : sig ... end
module Weekday : sig ... end
module Month : sig ... end
module type S = sig ... end
module MakeImplem (C : Clock) : Implem
module Make (I : Implem) : S with type t = I.t
module Unix : S