package timedesc

  1. Overview
  2. Docs
type view = private {
  1. iso_week_year : int;
  2. week : int;
  3. weekday : weekday;
}
type error = [
  1. | `Does_not_exist
  2. | `Invalid_iso_week_year of int
  3. | `Invalid_week of int
]
exception Error_exn of error
val make : iso_week_year:int -> week:int -> weekday:weekday -> (t, error) result
val make_exn : iso_week_year:int -> week:int -> weekday:weekday -> t
val view : t -> view
OCaml

Innovation. Community. Security.