package timedesc

  1. Overview
  2. Docs
type view = private {
  1. year : int;
  2. day_of_year : int;
}
type error = [
  1. | `Does_not_exist
  2. | `Invalid_year of int
  3. | `Invalid_day_of_year of int
]
exception Error_exn of error
val make : year:int -> day_of_year:int -> (t, error) Stdlib.result

Constructs a date in the ISO ordinal calendar.

Returns Error `Invalid_year if year < 0 || 9999 < year.

Returns Error `Invalid_day_of_year if day_of_year < 1 || day count of year < day_of_year.

val make_exn : year:int -> day_of_year:int -> t
val view : t -> view

Pretty printing

val pp_iso8601 : Stdlib.Format.formatter -> t -> unit
val to_iso8601 : t -> string

Parsing

val of_iso8601 : string -> (t, string) Stdlib.result
val of_iso8601_exn : string -> t