ocaml-community / calendar

OCaml library for handling dates and times.
Other
43 stars 9 forks source link

Time zone limitations #11

Open loxs opened 5 years ago

loxs commented 5 years ago

Originally reported here by Jérôme Vouillon @vouillon

New Zealand is at UTC+12:00, which is not accepted by Calendar. Indeed, we have this code in time_Zone.ml: let out_of_bounds x = x < - 12 || x > 11

This is affected by commit but needs to be verified by a test and maybe we need to come up with new, reasonable limitations