type error = [ | `Does_not_exist| `Invalid_iso_year of int| `Invalid_iso_week of int
]Constructors
val make : year:int -> week:int -> (t, error) Stdlib.resultval make_exn : year:int -> week:int -> tAccessors
val year_week : t -> int * intComparison
val equal : t -> t -> boolval compare : t -> t -> intArithmetic
val add : weeks:int -> t -> tval sub : weeks:int -> t -> tval diff_weeks : t -> t -> intPretty-printing
val pp_iso8601 : Stdlib.Format.formatter -> t -> unitval to_iso8601 : t -> stringParsing
val of_iso8601 : string -> (t, string) Stdlib.resultval of_iso8601_exn : string -> t