package odate

  1. Overview
  2. Docs

Module ODateSource

Sourcetype weekday = [
  1. | `Monday
  2. | `Tuesday
  3. | `Wednesday
  4. | `Thursday
  5. | `Friday
  6. | `Saturday
  7. | `Sunday
]
Sourcetype month = [
  1. | `January
  2. | `February
  3. | `March
  4. | `April
  5. | `May
  6. | `June
  7. | `July
  8. | `August
  9. | `September
  10. | `October
  11. | `November
  12. | `December
]
Sourcetype year = int
Sourcetype day = int
Sourcetype tz_internal = int
Sourcetype tz =
  1. | UTC
  2. | Local
  3. | Plus of tz_internal
Sourcetype human_readable = {
  1. s : int;
  2. m : int;
  3. h : int;
  4. day : day;
  5. wday : weekday;
  6. month : month;
  7. year : year;
  8. tz : tz;
}
Sourcetype parser_
Sourcetype printer
Sourcetype format = string
Sourcemodule type Clock = sig ... end
Sourcemodule type Implem = sig ... end
Sourcemodule Hour : sig ... end
Sourcemodule Weekday : sig ... end
Sourcemodule Month : sig ... end
Sourcemodule type S = sig ... end
Sourcemodule Make (I : Implem) : S with type t = I.t
Sourcemodule Unix : S
OCaml

Innovation. Community. Security.