Module Timedesc_tzdb

module M : Stdlib.Map.S with type key = string
type entry = {
  1. is_dst : bool;
  2. offset : int;
}
type table = (int64, Stdlib.Bigarray.int64_elt, Stdlib.Bigarray.c_layout) Stdlib.Bigarray.Array1.t * entry array
val db : table M.t option
val compressed : string option