sig
  module Zone :
    sig
      exception Unknown_zone of string
      exception Invalid_file_format of string
      type t = Zone.t
      val bin_size_t : t Bin_prot.Size.sizer
      val bin_write_t : t Bin_prot.Write_ml.writer
      val bin_write_t_ : t Bin_prot.Unsafe_write_c.writer
      val bin_writer_t : t Bin_prot.Type_class.writer
      val bin_read_t : t Bin_prot.Read_ml.reader
      val bin_read_t_ : t Bin_prot.Unsafe_read_c.reader
      val bin_read_t__ : (int -> t) Bin_prot.Unsafe_read_c.reader
      val bin_reader_t : t Bin_prot.Type_class.reader
      val bin_t : t Bin_prot.Type_class.t
      val sexp_of_t : t -> Sexplib.Sexp.t
      val t_of_sexp : Sexplib.Sexp.t -> t
      val find : string -> t option
      val find_office : [ `hkg | `ldn | `nyc ] -> t
      val find_exn : string -> t
      val machine_zone : unit -> t
      val of_utc_offset : int -> t
      val utc : t
      val abbreviation : t -> float -> string
      val name : t -> string
      val init : unit -> unit
      val digest : t -> string option
      val to_utc_offset : t -> int
      val initialized_zones : unit -> (string * t) list
      val shift_epoch_time : t -> [ `Local | `UTC ] -> float -> float
    end
  module Date :
    sig
      type t = Date.t = private { y : int; m : Month.t; d : int; }
      type sexpable = t
      val sexp_of_t : sexpable -> Sexplib.Sexp.t
      val t_of_sexp : Sexplib.Sexp.t -> sexpable
      type binable = t
      val bin_size_t : binable Bin_prot.Size.sizer
      val bin_write_t : binable Bin_prot.Map_to_safe.writer
      val bin_write_t_ : binable Bin_prot.Unsafe_write_c.writer
      val bin_read_t : binable Bin_prot.Read_ml.reader
      val bin_read_t_ : binable Bin_prot.Unsafe_read_c.reader
      val bin_read_t__ : (int -> binable) Bin_prot.Unsafe_read_c.reader
      val bin_writer_t : binable Bin_prot.Type_class.writer
      val bin_reader_t : binable Bin_prot.Type_class.reader
      val bin_t : binable Bin_prot.Type_class.t
      type hashable = t
      module Hashable : sig type t = hashable end
      val hash : hashable -> int
      module Table :
        sig
          module Key : sig type t = Hashable.t end
          val hashable : Key.t Core_hashtbl_intf.hashable
          type 'a t =
              (Key.t, 'a)
              Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val clear :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            unit
          val copy :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val invariant :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            unit
          val fold :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            init:'->
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               data:'-> '-> 'c) ->
            'c
          val iter :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               data:'-> unit) ->
            unit
          val existsi :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               data:'-> bool) ->
            bool
          val exists :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('-> bool) -> bool
          val length :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            int
          val is_empty :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            bool
          val mem :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            bool
          val remove :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            unit
          val remove_one :
            ('a, 'b list)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            unit
          val replace :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            key:'a
                Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            data:'-> unit
          val change :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            ('b option -> 'b option) -> unit
          val add_multi :
            ('a, 'b list)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            key:'a
                Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            data:'-> unit
          val map :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('-> 'c) ->
            ('a, 'c)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val mapi :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               data:'-> 'c) ->
            ('a, 'c)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val filter_map :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('-> 'c option) ->
            ('a, 'c)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val filter_mapi :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               data:'-> 'c option) ->
            ('a, 'c)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val filter :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('-> bool) ->
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val filteri :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               data:'-> bool) ->
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val find_or_add :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            default:(unit -> 'b) -> 'b
          val find :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            'b option
          val find_exn :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            'b
          val iter_vals :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('-> unit) -> unit
          val merge :
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               'b option -> 'c option -> 'd option) ->
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            ('a, 'c)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            ('a, 'd)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val merge_into :
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               '-> 'b option -> 'b option) ->
            src:('a, 'b)
                Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            dst:('a, 'b)
                Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            unit
          val keys :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t
            list
          val data :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'b list
          val filter_inplace :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('-> bool) -> unit
          val filteri_inplace :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('a
               Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               '-> bool) ->
            unit
          val equal :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            ('-> '-> bool) -> bool
          val to_alist :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            ('a
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t *
             'b)
            list
          val incr :
            ?by:int ->
            ('a, int)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            unit
          val create :
            (unit ->
             ('a, 'b)
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
            Core_hashtbl_intf.with_options
          val of_alist :
            (('a
              Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t *
              'b)
             list ->
             [ `Duplicate_key of
                 'a
                 Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t
             | `Ok of
                 ('a, 'b)
                 Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ])
            Core_hashtbl_intf.with_options
          val of_alist_exn :
            (('a
              Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t *
              'b)
             list ->
             ('a, 'b)
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
            Core_hashtbl_intf.with_options
          val of_alist_multi :
            (('a
              Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t *
              'b)
             list ->
             ('a, 'b list)
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
            Core_hashtbl_intf.with_options
          val create_mapped :
            (get_key:('->
                      'b
                      Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t) ->
             get_data:('-> 'c) ->
             'a list ->
             ('b, 'c)
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
            Core_hashtbl_intf.with_options
          val create_with_key :
            (get_key:('->
                      'b
                      Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t) ->
             'a list ->
             ('b, 'a)
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
            Core_hashtbl_intf.with_options
          val group :
            (get_key:('->
                      'b
                      Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t) ->
             get_data:('-> 'c) ->
             combine:('-> '-> 'c) ->
             'a list ->
             ('b, 'c)
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
            Core_hashtbl_intf.with_options
          type 'a sexpable = 'a t
          val sexp_of_t :
            ('-> Sexplib.Sexp.t) -> 'a sexpable -> Sexplib.Sexp.t
          val t_of_sexp :
            (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a sexpable
          type 'a binable = 'a t
          val bin_size_t : ('a, 'a binable) Bin_prot.Size.sizer1
          val bin_write_t : ('a, 'a binable) Bin_prot.Map_to_safe.writer1
          val bin_write_t_ : ('a, 'a binable) Bin_prot.Unsafe_write_c.writer1
          val bin_read_t : ('a, 'a binable) Bin_prot.Map_to_safe.reader1
          val bin_read_t_ : ('a, 'a binable) Bin_prot.Unsafe_read_c.reader1
          val bin_read_t__ :
            ('a, int -> 'a binable) Bin_prot.Unsafe_read_c.reader1
          val bin_writer_t : ('a, 'a binable) Bin_prot.Type_class.S1.writer
          val bin_reader_t : ('a, 'a binable) Bin_prot.Type_class.S1.reader
          val bin_t : ('a, 'a binable) Bin_prot.Type_class.S1.t
        end
      module Hash_set :
        sig
          type elem = hashable
          type t = elem Hash_set.t
          type sexpable = t
          val sexp_of_t : sexpable -> Sexplib.Sexp.t
          val t_of_sexp : Sexplib.Sexp.t -> sexpable
          type binable = t
          val bin_size_t : binable Bin_prot.Size.sizer
          val bin_write_t : binable Bin_prot.Map_to_safe.writer
          val bin_write_t_ : binable Bin_prot.Unsafe_write_c.writer
          val bin_read_t : binable Bin_prot.Read_ml.reader
          val bin_read_t_ : binable Bin_prot.Unsafe_read_c.reader
          val bin_read_t__ : (int -> binable) Bin_prot.Unsafe_read_c.reader
          val bin_writer_t : binable Bin_prot.Type_class.writer
          val bin_reader_t : binable Bin_prot.Type_class.reader
          val bin_t : binable Bin_prot.Type_class.t
          val create : ?growth_allowed:bool -> ?size:int -> unit -> t
          val of_list : elem list -> t
        end
      module Hash_queue :
        sig
          module Key :
            sig
              type t = hashable
              val compare : t -> t -> int
              val hash : t -> int
              type sexpable = t
              val sexp_of_t : sexpable -> Sexplib.Sexp.t
              val t_of_sexp : Sexplib.Sexp.t -> sexpable
            end
          type 'a t = 'Date.Hash_queue.t
          type 'a container = 'a t
          val length : 'a container -> int
          val is_empty : 'a container -> bool
          val iter : 'a container -> f:('-> unit) -> unit
          val fold : 'a container -> init:'-> f:('-> '-> 'b) -> 'b
          val exists : 'a container -> f:('-> bool) -> bool
          val for_all : 'a container -> f:('-> bool) -> bool
          val find : 'a container -> f:('-> bool) -> 'a option
          val to_list : 'a container -> 'a list
          val to_array : 'a container -> 'a array
          val container : ('a, 'a container) Container.type_class
          val invariant : 'a t -> unit
          val create : unit -> 'a t
          val clear : 'a t -> unit
          val mem : 'a t -> Key.t -> bool
          val lookup : 'a t -> Key.t -> 'a option
          val lookup_exn : 'a t -> Key.t -> 'a
          val enqueue : 'a t -> Key.t -> '-> [ `Key_already_present | `Ok ]
          val enqueue_exn : 'a t -> Key.t -> '-> unit
          val keys : 'a t -> Key.t list
          val dequeue : 'a t -> 'a option
          val dequeue_exn : 'a t -> 'a
          val dequeue_with_key : 'a t -> (Key.t * 'a) option
          val dequeue_with_key_exn : 'a t -> Key.t * 'a
          val dequeue_all : 'a t -> f:('-> unit) -> unit
          val remove : 'a t -> Key.t -> [ `No_such_key | `Ok ]
          val remove_exn : 'a t -> Key.t -> unit
          val replace : 'a t -> Key.t -> '-> [ `No_such_key | `Ok ]
          val replace_exn : 'a t -> Key.t -> '-> unit
          val iteri : 'a t -> f:(key:Key.t -> data:'-> unit) -> unit
          val foldi :
            'a t -> init:'-> f:('-> key:Key.t -> data:'-> 'b) -> 'b
        end
      module Hash_heap :
        sig
          module Key :
            sig
              type t = hashable
              val compare : t -> t -> int
              val hash : t -> int
              type sexpable = t
              val sexp_of_t : sexpable -> Sexplib.Sexp.t
              val t_of_sexp : Sexplib.Sexp.t -> sexpable
            end
          type 'a t = 'Date.Hash_heap.t
          val create : ?min_size:int -> ('-> '-> int) -> 'a t
          val copy : 'a t -> 'a t
          val push :
            'a t -> key:Key.t -> data:'-> [ `Key_already_present | `Ok ]
          val push_exn : 'a t -> key:Key.t -> data:'-> unit
          val replace : 'a t -> key:Key.t -> data:'-> unit
          val remove : 'a t -> Key.t -> unit
          val mem : 'a t -> Key.t -> bool
          val top : 'a t -> 'a option
          val top_exn : 'a t -> 'a
          val top_with_key : 'a t -> (Key.t * 'a) option
          val top_with_key_exn : 'a t -> Key.t * 'a
          val pop_with_key : 'a t -> (Key.t * 'a) option
          val pop_with_key_exn : 'a t -> Key.t * 'a
          val pop : 'a t -> 'a option
          val pop_exn : 'a t -> 'a
          val cond_pop_with_key :
            'a t -> (key:Key.t -> data:'-> bool) -> (Key.t * 'a) option
          val cond_pop : 'a t -> ('-> bool) -> 'a option
          val find : 'a t -> Key.t -> 'a option
          val find_pop : 'a t -> Key.t -> 'a option
          val find_exn : 'a t -> Key.t -> 'a
          val find_pop_exn : 'a t -> Key.t -> 'a
          val iter : 'a t -> f:(key:Key.t -> data:'-> unit) -> unit
          val iter_vals : 'a t -> f:('-> unit) -> unit
        end
      type stringable = t
      val of_string : string -> stringable
      val to_string : stringable -> string
      type comparable = t
      val ( >= ) : comparable -> comparable -> bool
      val ( <= ) : comparable -> comparable -> bool
      val ( = ) : comparable -> comparable -> bool
      val ( > ) : comparable -> comparable -> bool
      val ( < ) : comparable -> comparable -> bool
      val ( <> ) : comparable -> comparable -> bool
      val equal : comparable -> comparable -> bool
      val compare : comparable -> comparable -> int
      val ascending : comparable -> comparable -> int
      val descending : comparable -> comparable -> int
      val min : comparable -> comparable -> comparable
      val max : comparable -> comparable -> comparable
      module Map :
        sig
          type key = comparable
          type 'a t = 'Date.Map.t
          module T : sig type 'a key = key type ('a, 'b) t = 'b t end
          type 'a sexpable = 'a t
          val sexp_of_t :
            ('-> Sexplib.Sexp.t) -> 'a sexpable -> Sexplib.Sexp.t
          val t_of_sexp :
            (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a sexpable
          val empty : 'a t
          val singleton : key -> '-> 'a t
          val is_empty : 'a t -> bool
          val cardinal : 'a t -> int
          val add : key:key -> data:'-> 'a t -> 'a t
          val add_multi : key:key -> data:'-> 'a list t -> 'a list t
          val change : 'a t -> key -> ('a option -> 'a option) -> 'a t
          val find_exn : 'a t -> key -> 'a
          val find : 'a t -> key -> 'a option
          val remove : 'a t -> key -> 'a t
          val mem : 'a t -> key -> bool
          val iter : f:(key:key -> data:'-> unit) -> 'a t -> unit
          val map : f:('-> 'b) -> 'a t -> 'b t
          val mapi : f:(key:key -> data:'-> 'b) -> 'a t -> 'b t
          val fold :
            f:(key:key -> data:'-> '-> 'b) -> 'a t -> init:'-> 'b
          val fold_right :
            f:(key:key -> data:'-> '-> 'b) -> 'a t -> init:'-> 'b
          val filter : f:(key:key -> data:'-> bool) -> 'a t -> 'a t
          val filter_map : f:('-> 'b option) -> 'a t -> 'b t
          val filter_mapi :
            f:(key:key -> data:'-> 'b option) -> 'a t -> 'b t
          val compare : ('-> '-> int) -> 'a t -> 'a t -> int
          val equal : ('-> '-> bool) -> 'a t -> 'a t -> bool
          val keys : 'a t -> key list
          val has_key : 'a t -> key -> bool
          val data : 'a t -> 'a list
          val of_alist :
            (key * 'a) list -> [ `Duplicate_key of key | `Ok of 'a t ]
          val of_alist_exn : (key * 'a) list -> 'a t
          val of_alist_multi : (key * 'a) list -> 'a list t
          val to_alist : 'a t -> (key * 'a) list
          val combine_alist :
            (key * 'a) list -> init:'-> f:('-> '-> 'b) -> 'b t
          val merge :
            f:(key:key -> 'a option -> 'b option -> 'c option) ->
            'a t -> 'b t -> 'c t
          val min_elt : 'a t -> (key * 'a) option
          val min_elt_exn : 'a t -> key * 'a
          val max_elt : 'a t -> (key * 'a) option
          val max_elt_exn : 'a t -> key * 'a
          val for_all : f:('-> bool) -> 'a t -> bool
          val exists : f:('-> bool) -> 'a t -> bool
          val fold_range_inclusive :
            'a t ->
            min:key ->
            max:key -> init:'-> f:(key:key -> data:'-> '-> 'b) -> 'b
          val range_to_alist : 'a t -> min:key -> max:key -> (key * 'a) list
          val prev_key : 'a t -> key -> key option
          val next_key : 'a t -> key -> key option
          val rank : 'a t -> key -> int option
          type 'a binable = 'a t
          val bin_size_t : ('a, 'a binable) Bin_prot.Size.sizer1
          val bin_write_t : ('a, 'a binable) Bin_prot.Map_to_safe.writer1
          val bin_write_t_ : ('a, 'a binable) Bin_prot.Unsafe_write_c.writer1
          val bin_read_t : ('a, 'a binable) Bin_prot.Map_to_safe.reader1
          val bin_read_t_ : ('a, 'a binable) Bin_prot.Unsafe_read_c.reader1
          val bin_read_t__ :
            ('a, int -> 'a binable) Bin_prot.Unsafe_read_c.reader1
          val bin_writer_t : ('a, 'a binable) Bin_prot.Type_class.S1.writer
          val bin_reader_t : ('a, 'a binable) Bin_prot.Type_class.S1.reader
          val bin_t : ('a, 'a binable) Bin_prot.Type_class.S1.t
        end
      module Set :
        sig
          type elt = comparable
          type t = Date.Set.t
          module T : sig type 'a elt = elt type 'a t = t end
          type sexpable = t
          val sexp_of_t : sexpable -> Sexplib.Sexp.t
          val t_of_sexp : Sexplib.Sexp.t -> sexpable
          val empty : t
          val is_empty : t -> bool
          val mem : t -> elt -> bool
          val add : t -> elt -> t
          val singleton : elt -> t
          val remove : t -> elt -> t
          val union : t -> t -> t
          val union_list : t list -> t
          val inter : t -> t -> t
          val diff : t -> t -> t
          val compare : t -> t -> int
          val equal : t -> t -> bool
          val subset : t -> t -> bool
          val iter : t -> f:(elt -> unit) -> unit
          val fold : t -> init:'-> f:(elt -> '-> 'a) -> 'a
          val fold_until :
            t ->
            init:'->
            f:(elt -> '-> [ `Continue of '| `Stop of 'a ]) -> 'a
          val for_all : t -> f:(elt -> bool) -> bool
          val exists : t -> f:(elt -> bool) -> bool
          val filter : t -> f:(elt -> bool) -> t
          val partition : t -> f:(elt -> bool) -> t * t
          val cardinal : t -> int
          val length : t -> int
          val elements : t -> elt list
          val min_elt : t -> elt option
          val min_elt_exn : t -> elt
          val max_elt : t -> elt option
          val max_elt_exn : t -> elt
          val choose : t -> elt option
          val choose_exn : t -> elt
          val of_list : elt list -> t
          val to_list : t -> elt list
          val of_array : elt array -> t
          val to_array : t -> elt array
          val split : elt -> t -> t * bool * t
          val group_by : t -> equiv:(elt -> elt -> bool) -> t list
          val find : t -> f:(elt -> bool) -> elt option
          val find_exn : t -> f:(elt -> bool) -> elt
          val find_index : t -> int -> elt option
          val remove_index : t -> int -> t
          type binable = t
          val bin_size_t : binable Bin_prot.Size.sizer
          val bin_write_t : binable Bin_prot.Map_to_safe.writer
          val bin_write_t_ : binable Bin_prot.Unsafe_write_c.writer
          val bin_read_t : binable Bin_prot.Read_ml.reader
          val bin_read_t_ : binable Bin_prot.Unsafe_read_c.reader
          val bin_read_t__ : (int -> binable) Bin_prot.Unsafe_read_c.reader
          val bin_writer_t : binable Bin_prot.Type_class.writer
          val bin_reader_t : binable Bin_prot.Type_class.reader
          val bin_t : binable Bin_prot.Type_class.t
        end
      val create : y:int -> m:Month.t -> d:int -> t
      val of_tm : Core_unix.tm -> t
      val of_time : Time_internal.T.t -> t
      val to_string_iso8601_extended : t -> string
      val of_string_iso8601_extended : string -> pos:int -> t
      val of_string_iso8601_basic : string -> pos:int -> t
      val to_string_iso8601_basic : t -> string
      val to_string_old : t -> string
      val pp : Format.formatter -> t -> unit
      val day : t -> int
      val month : t -> Month.t
      val year : t -> int
      val today : unit -> t
      val day_of_week : t -> Weekday.t
      val is_weekend : t -> bool
      val is_weekday : t -> bool
      val is_business_day : t -> is_holiday:(t -> bool) -> bool
      val add_days : t -> int -> t
      val add_months : t -> int -> t
      val diff : t -> t -> int
      val add_weekdays : t -> int -> t
      val add_business_days : t -> is_holiday:(t -> bool) -> int -> t
      val dates_between : min:t -> max:t -> t list
      val business_dates_between :
        min:t -> max:t -> is_holiday:(t -> bool) -> t list
      val weekdays_between : min:t -> max:t -> t list
      val previous_weekday : t -> t
      module Export :
        sig
          type _date =
            Date.Export._date = private {
            y : int;
            m : Month.t;
            d : int;
          }
        end
    end
  module Span :
    sig
      type t = Span.t
      module Parts :
        sig
          type t =
            Span.Parts.t = private {
            sign : Float.Sign.t;
            hr : int;
            min : int;
            sec : int;
            ms : int;
            us : int;
          }
          val sexp_of_t : t -> Sexplib.Sexp.t
          val t_of_sexp : Sexplib.Sexp.t -> t
        end
      type binable = t
      val bin_size_t : binable Bin_prot.Size.sizer
      val bin_write_t : binable Bin_prot.Map_to_safe.writer
      val bin_write_t_ : binable Bin_prot.Unsafe_write_c.writer
      val bin_read_t : binable Bin_prot.Read_ml.reader
      val bin_read_t_ : binable Bin_prot.Unsafe_read_c.reader
      val bin_read_t__ : (int -> binable) Bin_prot.Unsafe_read_c.reader
      val bin_writer_t : binable Bin_prot.Type_class.writer
      val bin_reader_t : binable Bin_prot.Type_class.reader
      val bin_t : binable Bin_prot.Type_class.t
      type comparable = t
      val ( >= ) : comparable -> comparable -> bool
      val ( <= ) : comparable -> comparable -> bool
      val ( = ) : comparable -> comparable -> bool
      val ( > ) : comparable -> comparable -> bool
      val ( < ) : comparable -> comparable -> bool
      val ( <> ) : comparable -> comparable -> bool
      val equal : comparable -> comparable -> bool
      val compare : comparable -> comparable -> int
      val ascending : comparable -> comparable -> int
      val descending : comparable -> comparable -> int
      val min : comparable -> comparable -> comparable
      val max : comparable -> comparable -> comparable
      module Map :
        sig
          type key = comparable
          type 'a t = 'Span.Map.t
          module T : sig type 'a key = key type ('a, 'b) t = 'b t end
          type 'a sexpable = 'a t
          val sexp_of_t :
            ('-> Sexplib.Sexp.t) -> 'a sexpable -> Sexplib.Sexp.t
          val t_of_sexp :
            (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a sexpable
          val empty : 'a t
          val singleton : key -> '-> 'a t
          val is_empty : 'a t -> bool
          val cardinal : 'a t -> int
          val add : key:key -> data:'-> 'a t -> 'a t
          val add_multi : key:key -> data:'-> 'a list t -> 'a list t
          val change : 'a t -> key -> ('a option -> 'a option) -> 'a t
          val find_exn : 'a t -> key -> 'a
          val find : 'a t -> key -> 'a option
          val remove : 'a t -> key -> 'a t
          val mem : 'a t -> key -> bool
          val iter : f:(key:key -> data:'-> unit) -> 'a t -> unit
          val map : f:('-> 'b) -> 'a t -> 'b t
          val mapi : f:(key:key -> data:'-> 'b) -> 'a t -> 'b t
          val fold :
            f:(key:key -> data:'-> '-> 'b) -> 'a t -> init:'-> 'b
          val fold_right :
            f:(key:key -> data:'-> '-> 'b) -> 'a t -> init:'-> 'b
          val filter : f:(key:key -> data:'-> bool) -> 'a t -> 'a t
          val filter_map : f:('-> 'b option) -> 'a t -> 'b t
          val filter_mapi :
            f:(key:key -> data:'-> 'b option) -> 'a t -> 'b t
          val compare : ('-> '-> int) -> 'a t -> 'a t -> int
          val equal : ('-> '-> bool) -> 'a t -> 'a t -> bool
          val keys : 'a t -> key list
          val has_key : 'a t -> key -> bool
          val data : 'a t -> 'a list
          val of_alist :
            (key * 'a) list -> [ `Duplicate_key of key | `Ok of 'a t ]
          val of_alist_exn : (key * 'a) list -> 'a t
          val of_alist_multi : (key * 'a) list -> 'a list t
          val to_alist : 'a t -> (key * 'a) list
          val combine_alist :
            (key * 'a) list -> init:'-> f:('-> '-> 'b) -> 'b t
          val merge :
            f:(key:key -> 'a option -> 'b option -> 'c option) ->
            'a t -> 'b t -> 'c t
          val min_elt : 'a t -> (key * 'a) option
          val min_elt_exn : 'a t -> key * 'a
          val max_elt : 'a t -> (key * 'a) option
          val max_elt_exn : 'a t -> key * 'a
          val for_all : f:('-> bool) -> 'a t -> bool
          val exists : f:('-> bool) -> 'a t -> bool
          val fold_range_inclusive :
            'a t ->
            min:key ->
            max:key -> init:'-> f:(key:key -> data:'-> '-> 'b) -> 'b
          val range_to_alist : 'a t -> min:key -> max:key -> (key * 'a) list
          val prev_key : 'a t -> key -> key option
          val next_key : 'a t -> key -> key option
          val rank : 'a t -> key -> int option
          type 'a binable = 'a t
          val bin_size_t : ('a, 'a binable) Bin_prot.Size.sizer1
          val bin_write_t : ('a, 'a binable) Bin_prot.Map_to_safe.writer1
          val bin_write_t_ : ('a, 'a binable) Bin_prot.Unsafe_write_c.writer1
          val bin_read_t : ('a, 'a binable) Bin_prot.Map_to_safe.reader1
          val bin_read_t_ : ('a, 'a binable) Bin_prot.Unsafe_read_c.reader1
          val bin_read_t__ :
            ('a, int -> 'a binable) Bin_prot.Unsafe_read_c.reader1
          val bin_writer_t : ('a, 'a binable) Bin_prot.Type_class.S1.writer
          val bin_reader_t : ('a, 'a binable) Bin_prot.Type_class.S1.reader
          val bin_t : ('a, 'a binable) Bin_prot.Type_class.S1.t
        end
      module Set :
        sig
          type elt = comparable
          type t = Span.Set.t
          module T : sig type 'a elt = elt type 'a t = t end
          type sexpable = t
          val sexp_of_t : sexpable -> Sexplib.Sexp.t
          val t_of_sexp : Sexplib.Sexp.t -> sexpable
          val empty : t
          val is_empty : t -> bool
          val mem : t -> elt -> bool
          val add : t -> elt -> t
          val singleton : elt -> t
          val remove : t -> elt -> t
          val union : t -> t -> t
          val union_list : t list -> t
          val inter : t -> t -> t
          val diff : t -> t -> t
          val compare : t -> t -> int
          val equal : t -> t -> bool
          val subset : t -> t -> bool
          val iter : t -> f:(elt -> unit) -> unit
          val fold : t -> init:'-> f:(elt -> '-> 'a) -> 'a
          val fold_until :
            t ->
            init:'->
            f:(elt -> '-> [ `Continue of '| `Stop of 'a ]) -> 'a
          val for_all : t -> f:(elt -> bool) -> bool
          val exists : t -> f:(elt -> bool) -> bool
          val filter : t -> f:(elt -> bool) -> t
          val partition : t -> f:(elt -> bool) -> t * t
          val cardinal : t -> int
          val length : t -> int
          val elements : t -> elt list
          val min_elt : t -> elt option
          val min_elt_exn : t -> elt
          val max_elt : t -> elt option
          val max_elt_exn : t -> elt
          val choose : t -> elt option
          val choose_exn : t -> elt
          val of_list : elt list -> t
          val to_list : t -> elt list
          val of_array : elt array -> t
          val to_array : t -> elt array
          val split : elt -> t -> t * bool * t
          val group_by : t -> equiv:(elt -> elt -> bool) -> t list
          val find : t -> f:(elt -> bool) -> elt option
          val find_exn : t -> f:(elt -> bool) -> elt
          val find_index : t -> int -> elt option
          val remove_index : t -> int -> t
          type binable = t
          val bin_size_t : binable Bin_prot.Size.sizer
          val bin_write_t : binable Bin_prot.Map_to_safe.writer
          val bin_write_t_ : binable Bin_prot.Unsafe_write_c.writer
          val bin_read_t : binable Bin_prot.Read_ml.reader
          val bin_read_t_ : binable Bin_prot.Unsafe_read_c.reader
          val bin_read_t__ : (int -> binable) Bin_prot.Unsafe_read_c.reader
          val bin_writer_t : binable Bin_prot.Type_class.writer
          val bin_reader_t : binable Bin_prot.Type_class.reader
          val bin_t : binable Bin_prot.Type_class.t
        end
      type floatable = t
      val of_float : float -> floatable
      val to_float : floatable -> float
      type hashable = t
      module Hashable : sig type t = hashable end
      val hash : hashable -> int
      module Table :
        sig
          module Key : sig type t = Hashable.t end
          val hashable : Key.t Core_hashtbl_intf.hashable
          type 'a t =
              (Key.t, 'a)
              Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val clear :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            unit
          val copy :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val invariant :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            unit
          val fold :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            init:'->
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               data:'-> '-> 'c) ->
            'c
          val iter :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               data:'-> unit) ->
            unit
          val existsi :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               data:'-> bool) ->
            bool
          val exists :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('-> bool) -> bool
          val length :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            int
          val is_empty :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            bool
          val mem :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            bool
          val remove :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            unit
          val remove_one :
            ('a, 'b list)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            unit
          val replace :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            key:'a
                Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            data:'-> unit
          val change :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            ('b option -> 'b option) -> unit
          val add_multi :
            ('a, 'b list)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            key:'a
                Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            data:'-> unit
          val map :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('-> 'c) ->
            ('a, 'c)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val mapi :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               data:'-> 'c) ->
            ('a, 'c)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val filter_map :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('-> 'c option) ->
            ('a, 'c)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val filter_mapi :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               data:'-> 'c option) ->
            ('a, 'c)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val filter :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('-> bool) ->
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val filteri :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               data:'-> bool) ->
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val find_or_add :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            default:(unit -> 'b) -> 'b
          val find :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            'b option
          val find_exn :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            'b
          val iter_vals :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('-> unit) -> unit
          val merge :
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               'b option -> 'c option -> 'd option) ->
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            ('a, 'c)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            ('a, 'd)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val merge_into :
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               '-> 'b option -> 'b option) ->
            src:('a, 'b)
                Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            dst:('a, 'b)
                Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            unit
          val keys :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t
            list
          val data :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'b list
          val filter_inplace :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('-> bool) -> unit
          val filteri_inplace :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('a
               Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               '-> bool) ->
            unit
          val equal :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            ('-> '-> bool) -> bool
          val to_alist :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            ('a
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t *
             'b)
            list
          val incr :
            ?by:int ->
            ('a, int)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            unit
          val create :
            (unit ->
             ('a, 'b)
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
            Core_hashtbl_intf.with_options
          val of_alist :
            (('a
              Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t *
              'b)
             list ->
             [ `Duplicate_key of
                 'a
                 Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t
             | `Ok of
                 ('a, 'b)
                 Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ])
            Core_hashtbl_intf.with_options
          val of_alist_exn :
            (('a
              Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t *
              'b)
             list ->
             ('a, 'b)
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
            Core_hashtbl_intf.with_options
          val of_alist_multi :
            (('a
              Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t *
              'b)
             list ->
             ('a, 'b list)
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
            Core_hashtbl_intf.with_options
          val create_mapped :
            (get_key:('->
                      'b
                      Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t) ->
             get_data:('-> 'c) ->
             'a list ->
             ('b, 'c)
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
            Core_hashtbl_intf.with_options
          val create_with_key :
            (get_key:('->
                      'b
                      Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t) ->
             'a list ->
             ('b, 'a)
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
            Core_hashtbl_intf.with_options
          val group :
            (get_key:('->
                      'b
                      Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t) ->
             get_data:('-> 'c) ->
             combine:('-> '-> 'c) ->
             'a list ->
             ('b, 'c)
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
            Core_hashtbl_intf.with_options
          type 'a sexpable = 'a t
          val sexp_of_t :
            ('-> Sexplib.Sexp.t) -> 'a sexpable -> Sexplib.Sexp.t
          val t_of_sexp :
            (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a sexpable
          type 'a binable = 'a t
          val bin_size_t : ('a, 'a binable) Bin_prot.Size.sizer1
          val bin_write_t : ('a, 'a binable) Bin_prot.Map_to_safe.writer1
          val bin_write_t_ : ('a, 'a binable) Bin_prot.Unsafe_write_c.writer1
          val bin_read_t : ('a, 'a binable) Bin_prot.Map_to_safe.reader1
          val bin_read_t_ : ('a, 'a binable) Bin_prot.Unsafe_read_c.reader1
          val bin_read_t__ :
            ('a, int -> 'a binable) Bin_prot.Unsafe_read_c.reader1
          val bin_writer_t : ('a, 'a binable) Bin_prot.Type_class.S1.writer
          val bin_reader_t : ('a, 'a binable) Bin_prot.Type_class.S1.reader
          val bin_t : ('a, 'a binable) Bin_prot.Type_class.S1.t
        end
      module Hash_set :
        sig
          type elem = hashable
          type t = elem Hash_set.t
          type sexpable = t
          val sexp_of_t : sexpable -> Sexplib.Sexp.t
          val t_of_sexp : Sexplib.Sexp.t -> sexpable
          type binable = t
          val bin_size_t : binable Bin_prot.Size.sizer
          val bin_write_t : binable Bin_prot.Map_to_safe.writer
          val bin_write_t_ : binable Bin_prot.Unsafe_write_c.writer
          val bin_read_t : binable Bin_prot.Read_ml.reader
          val bin_read_t_ : binable Bin_prot.Unsafe_read_c.reader
          val bin_read_t__ : (int -> binable) Bin_prot.Unsafe_read_c.reader
          val bin_writer_t : binable Bin_prot.Type_class.writer
          val bin_reader_t : binable Bin_prot.Type_class.reader
          val bin_t : binable Bin_prot.Type_class.t
          val create : ?growth_allowed:bool -> ?size:int -> unit -> t
          val of_list : elem list -> t
        end
      module Hash_queue :
        sig
          module Key :
            sig
              type t = hashable
              val compare : t -> t -> int
              val hash : t -> int
              type sexpable = t
              val sexp_of_t : sexpable -> Sexplib.Sexp.t
              val t_of_sexp : Sexplib.Sexp.t -> sexpable
            end
          type 'a t = 'Span.Hash_queue.t
          type 'a container = 'a t
          val length : 'a container -> int
          val is_empty : 'a container -> bool
          val iter : 'a container -> f:('-> unit) -> unit
          val fold : 'a container -> init:'-> f:('-> '-> 'b) -> 'b
          val exists : 'a container -> f:('-> bool) -> bool
          val for_all : 'a container -> f:('-> bool) -> bool
          val find : 'a container -> f:('-> bool) -> 'a option
          val to_list : 'a container -> 'a list
          val to_array : 'a container -> 'a array
          val container : ('a, 'a container) Container.type_class
          val invariant : 'a t -> unit
          val create : unit -> 'a t
          val clear : 'a t -> unit
          val mem : 'a t -> Key.t -> bool
          val lookup : 'a t -> Key.t -> 'a option
          val lookup_exn : 'a t -> Key.t -> 'a
          val enqueue : 'a t -> Key.t -> '-> [ `Key_already_present | `Ok ]
          val enqueue_exn : 'a t -> Key.t -> '-> unit
          val keys : 'a t -> Key.t list
          val dequeue : 'a t -> 'a option
          val dequeue_exn : 'a t -> 'a
          val dequeue_with_key : 'a t -> (Key.t * 'a) option
          val dequeue_with_key_exn : 'a t -> Key.t * 'a
          val dequeue_all : 'a t -> f:('-> unit) -> unit
          val remove : 'a t -> Key.t -> [ `No_such_key | `Ok ]
          val remove_exn : 'a t -> Key.t -> unit
          val replace : 'a t -> Key.t -> '-> [ `No_such_key | `Ok ]
          val replace_exn : 'a t -> Key.t -> '-> unit
          val iteri : 'a t -> f:(key:Key.t -> data:'-> unit) -> unit
          val foldi :
            'a t -> init:'-> f:('-> key:Key.t -> data:'-> 'b) -> 'b
        end
      module Hash_heap :
        sig
          module Key :
            sig
              type t = hashable
              val compare : t -> t -> int
              val hash : t -> int
              type sexpable = t
              val sexp_of_t : sexpable -> Sexplib.Sexp.t
              val t_of_sexp : Sexplib.Sexp.t -> sexpable
            end
          type 'a t = 'Span.Hash_heap.t
          val create : ?min_size:int -> ('-> '-> int) -> 'a t
          val copy : 'a t -> 'a t
          val push :
            'a t -> key:Key.t -> data:'-> [ `Key_already_present | `Ok ]
          val push_exn : 'a t -> key:Key.t -> data:'-> unit
          val replace : 'a t -> key:Key.t -> data:'-> unit
          val remove : 'a t -> Key.t -> unit
          val mem : 'a t -> Key.t -> bool
          val top : 'a t -> 'a option
          val top_exn : 'a t -> 'a
          val top_with_key : 'a t -> (Key.t * 'a) option
          val top_with_key_exn : 'a t -> Key.t * 'a
          val pop_with_key : 'a t -> (Key.t * 'a) option
          val pop_with_key_exn : 'a t -> Key.t * 'a
          val pop : 'a t -> 'a option
          val pop_exn : 'a t -> 'a
          val cond_pop_with_key :
            'a t -> (key:Key.t -> data:'-> bool) -> (Key.t * 'a) option
          val cond_pop : 'a t -> ('-> bool) -> 'a option
          val find : 'a t -> Key.t -> 'a option
          val find_pop : 'a t -> Key.t -> 'a option
          val find_exn : 'a t -> Key.t -> 'a
          val find_pop_exn : 'a t -> Key.t -> 'a
          val iter : 'a t -> f:(key:Key.t -> data:'-> unit) -> unit
          val iter_vals : 'a t -> f:('-> unit) -> unit
        end
      type robustly_comparable = t
      val ( >=. ) : robustly_comparable -> robustly_comparable -> bool
      val ( <=. ) : robustly_comparable -> robustly_comparable -> bool
      val ( =. ) : robustly_comparable -> robustly_comparable -> bool
      val ( >. ) : robustly_comparable -> robustly_comparable -> bool
      val ( <. ) : robustly_comparable -> robustly_comparable -> bool
      val ( <>. ) : robustly_comparable -> robustly_comparable -> bool
      type sexpable = t
      val sexp_of_t : sexpable -> Sexplib.Sexp.t
      val t_of_sexp : Sexplib.Sexp.t -> sexpable
      val to_string : t -> string
      val of_string : string -> t
      val nanosecond : t
      val microsecond : t
      val millisecond : t
      val second : t
      val minute : t
      val hour : t
      val day : t
      val epsilon : t
      val zero : t
      val create :
        ?day:int ->
        ?hr:int -> ?min:int -> ?sec:int -> ?ms:int -> ?us:int -> unit -> t
      val to_parts : t -> Parts.t
      val of_ns : float -> t
      val of_us : float -> t
      val of_ms : float -> t
      val of_sec : float -> t
      val of_int_sec : int -> t
      val of_min : float -> t
      val of_hr : float -> t
      val of_day : float -> t
      val to_ns : t -> float
      val to_us : t -> float
      val to_ms : t -> float
      val to_sec : t -> float
      val to_min : t -> float
      val to_hr : t -> float
      val to_day : t -> float
      val add : t -> t -> t
      val sub : t -> t -> t
      val abs : t -> t
      val scale : t -> float -> t
      val ( / ) : t -> float -> t
      val ( // ) : t -> t -> float
      val randomize : t -> percent:float -> t
      val pp : Format.formatter -> t -> unit
    end
  module Ofday :
    sig
      type t = Ofday.t
      type binable = t
      val bin_size_t : binable Bin_prot.Size.sizer
      val bin_write_t : binable Bin_prot.Map_to_safe.writer
      val bin_write_t_ : binable Bin_prot.Unsafe_write_c.writer
      val bin_read_t : binable Bin_prot.Read_ml.reader
      val bin_read_t_ : binable Bin_prot.Unsafe_read_c.reader
      val bin_read_t__ : (int -> binable) Bin_prot.Unsafe_read_c.reader
      val bin_writer_t : binable Bin_prot.Type_class.writer
      val bin_reader_t : binable Bin_prot.Type_class.reader
      val bin_t : binable Bin_prot.Type_class.t
      type comparable = t
      val ( >= ) : comparable -> comparable -> bool
      val ( <= ) : comparable -> comparable -> bool
      val ( = ) : comparable -> comparable -> bool
      val ( > ) : comparable -> comparable -> bool
      val ( < ) : comparable -> comparable -> bool
      val ( <> ) : comparable -> comparable -> bool
      val equal : comparable -> comparable -> bool
      val compare : comparable -> comparable -> int
      val ascending : comparable -> comparable -> int
      val descending : comparable -> comparable -> int
      val min : comparable -> comparable -> comparable
      val max : comparable -> comparable -> comparable
      module Map :
        sig
          type key = comparable
          type 'a t = 'Ofday.Map.t
          module T : sig type 'a key = key type ('a, 'b) t = 'b t end
          type 'a sexpable = 'a t
          val sexp_of_t :
            ('-> Sexplib.Sexp.t) -> 'a sexpable -> Sexplib.Sexp.t
          val t_of_sexp :
            (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a sexpable
          val empty : 'a t
          val singleton : key -> '-> 'a t
          val is_empty : 'a t -> bool
          val cardinal : 'a t -> int
          val add : key:key -> data:'-> 'a t -> 'a t
          val add_multi : key:key -> data:'-> 'a list t -> 'a list t
          val change : 'a t -> key -> ('a option -> 'a option) -> 'a t
          val find_exn : 'a t -> key -> 'a
          val find : 'a t -> key -> 'a option
          val remove : 'a t -> key -> 'a t
          val mem : 'a t -> key -> bool
          val iter : f:(key:key -> data:'-> unit) -> 'a t -> unit
          val map : f:('-> 'b) -> 'a t -> 'b t
          val mapi : f:(key:key -> data:'-> 'b) -> 'a t -> 'b t
          val fold :
            f:(key:key -> data:'-> '-> 'b) -> 'a t -> init:'-> 'b
          val fold_right :
            f:(key:key -> data:'-> '-> 'b) -> 'a t -> init:'-> 'b
          val filter : f:(key:key -> data:'-> bool) -> 'a t -> 'a t
          val filter_map : f:('-> 'b option) -> 'a t -> 'b t
          val filter_mapi :
            f:(key:key -> data:'-> 'b option) -> 'a t -> 'b t
          val compare : ('-> '-> int) -> 'a t -> 'a t -> int
          val equal : ('-> '-> bool) -> 'a t -> 'a t -> bool
          val keys : 'a t -> key list
          val has_key : 'a t -> key -> bool
          val data : 'a t -> 'a list
          val of_alist :
            (key * 'a) list -> [ `Duplicate_key of key | `Ok of 'a t ]
          val of_alist_exn : (key * 'a) list -> 'a t
          val of_alist_multi : (key * 'a) list -> 'a list t
          val to_alist : 'a t -> (key * 'a) list
          val combine_alist :
            (key * 'a) list -> init:'-> f:('-> '-> 'b) -> 'b t
          val merge :
            f:(key:key -> 'a option -> 'b option -> 'c option) ->
            'a t -> 'b t -> 'c t
          val min_elt : 'a t -> (key * 'a) option
          val min_elt_exn : 'a t -> key * 'a
          val max_elt : 'a t -> (key * 'a) option
          val max_elt_exn : 'a t -> key * 'a
          val for_all : f:('-> bool) -> 'a t -> bool
          val exists : f:('-> bool) -> 'a t -> bool
          val fold_range_inclusive :
            'a t ->
            min:key ->
            max:key -> init:'-> f:(key:key -> data:'-> '-> 'b) -> 'b
          val range_to_alist : 'a t -> min:key -> max:key -> (key * 'a) list
          val prev_key : 'a t -> key -> key option
          val next_key : 'a t -> key -> key option
          val rank : 'a t -> key -> int option
          type 'a binable = 'a t
          val bin_size_t : ('a, 'a binable) Bin_prot.Size.sizer1
          val bin_write_t : ('a, 'a binable) Bin_prot.Map_to_safe.writer1
          val bin_write_t_ : ('a, 'a binable) Bin_prot.Unsafe_write_c.writer1
          val bin_read_t : ('a, 'a binable) Bin_prot.Map_to_safe.reader1
          val bin_read_t_ : ('a, 'a binable) Bin_prot.Unsafe_read_c.reader1
          val bin_read_t__ :
            ('a, int -> 'a binable) Bin_prot.Unsafe_read_c.reader1
          val bin_writer_t : ('a, 'a binable) Bin_prot.Type_class.S1.writer
          val bin_reader_t : ('a, 'a binable) Bin_prot.Type_class.S1.reader
          val bin_t : ('a, 'a binable) Bin_prot.Type_class.S1.t
        end
      module Set :
        sig
          type elt = comparable
          type t = Ofday.Set.t
          module T : sig type 'a elt = elt type 'a t = t end
          type sexpable = t
          val sexp_of_t : sexpable -> Sexplib.Sexp.t
          val t_of_sexp : Sexplib.Sexp.t -> sexpable
          val empty : t
          val is_empty : t -> bool
          val mem : t -> elt -> bool
          val add : t -> elt -> t
          val singleton : elt -> t
          val remove : t -> elt -> t
          val union : t -> t -> t
          val union_list : t list -> t
          val inter : t -> t -> t
          val diff : t -> t -> t
          val compare : t -> t -> int
          val equal : t -> t -> bool
          val subset : t -> t -> bool
          val iter : t -> f:(elt -> unit) -> unit
          val fold : t -> init:'-> f:(elt -> '-> 'a) -> 'a
          val fold_until :
            t ->
            init:'->
            f:(elt -> '-> [ `Continue of '| `Stop of 'a ]) -> 'a
          val for_all : t -> f:(elt -> bool) -> bool
          val exists : t -> f:(elt -> bool) -> bool
          val filter : t -> f:(elt -> bool) -> t
          val partition : t -> f:(elt -> bool) -> t * t
          val cardinal : t -> int
          val length : t -> int
          val elements : t -> elt list
          val min_elt : t -> elt option
          val min_elt_exn : t -> elt
          val max_elt : t -> elt option
          val max_elt_exn : t -> elt
          val choose : t -> elt option
          val choose_exn : t -> elt
          val of_list : elt list -> t
          val to_list : t -> elt list
          val of_array : elt array -> t
          val to_array : t -> elt array
          val split : elt -> t -> t * bool * t
          val group_by : t -> equiv:(elt -> elt -> bool) -> t list
          val find : t -> f:(elt -> bool) -> elt option
          val find_exn : t -> f:(elt -> bool) -> elt
          val find_index : t -> int -> elt option
          val remove_index : t -> int -> t
          type binable = t
          val bin_size_t : binable Bin_prot.Size.sizer
          val bin_write_t : binable Bin_prot.Map_to_safe.writer
          val bin_write_t_ : binable Bin_prot.Unsafe_write_c.writer
          val bin_read_t : binable Bin_prot.Read_ml.reader
          val bin_read_t_ : binable Bin_prot.Unsafe_read_c.reader
          val bin_read_t__ : (int -> binable) Bin_prot.Unsafe_read_c.reader
          val bin_writer_t : binable Bin_prot.Type_class.writer
          val bin_reader_t : binable Bin_prot.Type_class.reader
          val bin_t : binable Bin_prot.Type_class.t
        end
      type floatable = t
      val of_float : float -> floatable
      val to_float : floatable -> float
      type hashable = t
      module Hashable : sig type t = hashable end
      val hash : hashable -> int
      module Table :
        sig
          module Key : sig type t = Hashable.t end
          val hashable : Key.t Core_hashtbl_intf.hashable
          type 'a t =
              (Key.t, 'a)
              Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val clear :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            unit
          val copy :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val invariant :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            unit
          val fold :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            init:'->
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               data:'-> '-> 'c) ->
            'c
          val iter :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               data:'-> unit) ->
            unit
          val existsi :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               data:'-> bool) ->
            bool
          val exists :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('-> bool) -> bool
          val length :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            int
          val is_empty :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            bool
          val mem :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            bool
          val remove :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            unit
          val remove_one :
            ('a, 'b list)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            unit
          val replace :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            key:'a
                Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            data:'-> unit
          val change :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            ('b option -> 'b option) -> unit
          val add_multi :
            ('a, 'b list)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            key:'a
                Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            data:'-> unit
          val map :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('-> 'c) ->
            ('a, 'c)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val mapi :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               data:'-> 'c) ->
            ('a, 'c)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val filter_map :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('-> 'c option) ->
            ('a, 'c)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val filter_mapi :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               data:'-> 'c option) ->
            ('a, 'c)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val filter :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('-> bool) ->
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val filteri :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               data:'-> bool) ->
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val find_or_add :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            default:(unit -> 'b) -> 'b
          val find :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            'b option
          val find_exn :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            'b
          val iter_vals :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('-> unit) -> unit
          val merge :
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               'b option -> 'c option -> 'd option) ->
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            ('a, 'c)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            ('a, 'd)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
          val merge_into :
            f:(key:'a
                   Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               '-> 'b option -> 'b option) ->
            src:('a, 'b)
                Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            dst:('a, 'b)
                Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            unit
          val keys :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t
            list
          val data :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'b list
          val filter_inplace :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('-> bool) -> unit
          val filteri_inplace :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            f:('a
               Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
               '-> bool) ->
            unit
          val equal :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            ('-> '-> bool) -> bool
          val to_alist :
            ('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            ('a
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t *
             'b)
            list
          val incr :
            ?by:int ->
            ('a, int)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
            'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
            unit
          val create :
            (unit ->
             ('a, 'b)
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
            Core_hashtbl_intf.with_options
          val of_alist :
            (('a
              Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t *
              'b)
             list ->
             [ `Duplicate_key of
                 'a
                 Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t
             | `Ok of
                 ('a, 'b)
                 Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ])
            Core_hashtbl_intf.with_options
          val of_alist_exn :
            (('a
              Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t *
              'b)
             list ->
             ('a, 'b)
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
            Core_hashtbl_intf.with_options
          val of_alist_multi :
            (('a
              Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t *
              'b)
             list ->
             ('a, 'b list)
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
            Core_hashtbl_intf.with_options
          val create_mapped :
            (get_key:('->
                      'b
                      Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t) ->
             get_data:('-> 'c) ->
             'a list ->
             ('b, 'c)
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
            Core_hashtbl_intf.with_options
          val create_with_key :
            (get_key:('->
                      'b
                      Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t) ->
             'a list ->
             ('b, 'a)
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
            Core_hashtbl_intf.with_options
          val group :
            (get_key:('->
                      'b
                      Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t) ->
             get_data:('-> 'c) ->
             combine:('-> '-> 'c) ->
             'a list ->
             ('b, 'c)
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
            Core_hashtbl_intf.with_options
          type 'a sexpable = 'a t
          val sexp_of_t :
            ('-> Sexplib.Sexp.t) -> 'a sexpable -> Sexplib.Sexp.t
          val t_of_sexp :
            (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a sexpable
          type 'a binable = 'a t
          val bin_size_t : ('a, 'a binable) Bin_prot.Size.sizer1
          val bin_write_t : ('a, 'a binable) Bin_prot.Map_to_safe.writer1
          val bin_write_t_ : ('a, 'a binable) Bin_prot.Unsafe_write_c.writer1
          val bin_read_t : ('a, 'a binable) Bin_prot.Map_to_safe.reader1
          val bin_read_t_ : ('a, 'a binable) Bin_prot.Unsafe_read_c.reader1
          val bin_read_t__ :
            ('a, int -> 'a binable) Bin_prot.Unsafe_read_c.reader1
          val bin_writer_t : ('a, 'a binable) Bin_prot.Type_class.S1.writer
          val bin_reader_t : ('a, 'a binable) Bin_prot.Type_class.S1.reader
          val bin_t : ('a, 'a binable) Bin_prot.Type_class.S1.t
        end
      module Hash_set :
        sig
          type elem = hashable
          type t = elem Hash_set.t
          type sexpable = t
          val sexp_of_t : sexpable -> Sexplib.Sexp.t
          val t_of_sexp : Sexplib.Sexp.t -> sexpable
          type binable = t
          val bin_size_t : binable Bin_prot.Size.sizer
          val bin_write_t : binable Bin_prot.Map_to_safe.writer
          val bin_write_t_ : binable Bin_prot.Unsafe_write_c.writer
          val bin_read_t : binable Bin_prot.Read_ml.reader
          val bin_read_t_ : binable Bin_prot.Unsafe_read_c.reader
          val bin_read_t__ : (int -> binable) Bin_prot.Unsafe_read_c.reader
          val bin_writer_t : binable Bin_prot.Type_class.writer
          val bin_reader_t : binable Bin_prot.Type_class.reader
          val bin_t : binable Bin_prot.Type_class.t
          val create : ?growth_allowed:bool -> ?size:int -> unit -> t
          val of_list : elem list -> t
        end
      module Hash_queue :
        sig
          module Key :
            sig
              type t = hashable
              val compare : t -> t -> int
              val hash : t -> int
              type sexpable = t
              val sexp_of_t : sexpable -> Sexplib.Sexp.t
              val t_of_sexp : Sexplib.Sexp.t -> sexpable
            end
          type 'a t = 'Ofday.Hash_queue.t
          type 'a container = 'a t
          val length : 'a container -> int
          val is_empty : 'a container -> bool
          val iter : 'a container -> f:('-> unit) -> unit
          val fold : 'a container -> init:'-> f:('-> '-> 'b) -> 'b
          val exists : 'a container -> f:('-> bool) -> bool
          val for_all : 'a container -> f:('-> bool) -> bool
          val find : 'a container -> f:('-> bool) -> 'a option
          val to_list : 'a container -> 'a list
          val to_array : 'a container -> 'a array
          val container : ('a, 'a container) Container.type_class
          val invariant : 'a t -> unit
          val create : unit -> 'a t
          val clear : 'a t -> unit
          val mem : 'a t -> Key.t -> bool
          val lookup : 'a t -> Key.t -> 'a option
          val lookup_exn : 'a t -> Key.t -> 'a
          val enqueue : 'a t -> Key.t -> '-> [ `Key_already_present | `Ok ]
          val enqueue_exn : 'a t -> Key.t -> '-> unit
          val keys : 'a t -> Key.t list
          val dequeue : 'a t -> 'a option
          val dequeue_exn : 'a t -> 'a
          val dequeue_with_key : 'a t -> (Key.t * 'a) option
          val dequeue_with_key_exn : 'a t -> Key.t * 'a
          val dequeue_all : 'a t -> f:('-> unit) -> unit
          val remove : 'a t -> Key.t -> [ `No_such_key | `Ok ]
          val remove_exn : 'a t -> Key.t -> unit
          val replace : 'a t -> Key.t -> '-> [ `No_such_key | `Ok ]
          val replace_exn : 'a t -> Key.t -> '-> unit
          val iteri : 'a t -> f:(key:Key.t -> data:'-> unit) -> unit
          val foldi :
            'a t -> init:'-> f:('-> key:Key.t -> data:'-> 'b) -> 'b
        end
      module Hash_heap :
        sig
          module Key :
            sig
              type t = hashable
              val compare : t -> t -> int
              val hash : t -> int
              type sexpable = t
              val sexp_of_t : sexpable -> Sexplib.Sexp.t
              val t_of_sexp : Sexplib.Sexp.t -> sexpable
            end
          type 'a t = 'Ofday.Hash_heap.t
          val create : ?min_size:int -> ('-> '-> int) -> 'a t
          val copy : 'a t -> 'a t
          val push :
            'a t -> key:Key.t -> data:'-> [ `Key_already_present | `Ok ]
          val push_exn : 'a t -> key:Key.t -> data:'-> unit
          val replace : 'a t -> key:Key.t -> data:'-> unit
          val remove : 'a t -> Key.t -> unit
          val mem : 'a t -> Key.t -> bool
          val top : 'a t -> 'a option
          val top_exn : 'a t -> 'a
          val top_with_key : 'a t -> (Key.t * 'a) option
          val top_with_key_exn : 'a t -> Key.t * 'a
          val pop_with_key : 'a t -> (Key.t * 'a) option
          val pop_with_key_exn : 'a t -> Key.t * 'a
          val pop : 'a t -> 'a option
          val pop_exn : 'a t -> 'a
          val cond_pop_with_key :
            'a t -> (key:Key.t -> data:'-> bool) -> (Key.t * 'a) option
          val cond_pop : 'a t -> ('-> bool) -> 'a option
          val find : 'a t -> Key.t -> 'a option
          val find_pop : 'a t -> Key.t -> 'a option
          val find_exn : 'a t -> Key.t -> 'a
          val find_pop_exn : 'a t -> Key.t -> 'a
          val iter : 'a t -> f:(key:Key.t -> data:'-> unit) -> unit
          val iter_vals : 'a t -> f:('-> unit) -> unit
        end
      type robustly_comparable = t
      val ( >=. ) : robustly_comparable -> robustly_comparable -> bool
      val ( <=. ) : robustly_comparable -> robustly_comparable -> bool
      val ( =. ) : robustly_comparable -> robustly_comparable -> bool
      val ( >. ) : robustly_comparable -> robustly_comparable -> bool
      val ( <. ) : robustly_comparable -> robustly_comparable -> bool
      val ( <>. ) : robustly_comparable -> robustly_comparable -> bool
      type sexpable = t
      val sexp_of_t : sexpable -> Sexplib.Sexp.t
      val t_of_sexp : Sexplib.Sexp.t -> sexpable
      type stringable = t
      val of_string : string -> stringable
      val to_string : stringable -> string
      val create :
        ?hr:int -> ?min:int -> ?sec:int -> ?ms:int -> ?us:int -> unit -> t
      val to_parts : t -> Span.Parts.t
      val start_of_day : t
      val end_of_day : t
      val to_span_since_start_of_day : t -> Span.t
      val of_span_since_start_of_day : Span.t -> t
      val add : t -> Span.t -> t option
      val sub : t -> Span.t -> t option
      val diff : t -> t -> Span.t
      val to_sec : t -> float
      val of_sec : float -> t
      val pp : Format.formatter -> t -> unit
      val small_diff : t -> t -> Span.t
      val to_string_trimmed : t -> string
      val to_sec_string : t -> string
      val of_string_iso8601_extended : ?pos:int -> ?len:int -> string -> t
      val to_millisec_string : t -> string
      val now : unit -> Ofday.t
    end
  type t = Time_internal.T.t
  val use_new_string_and_sexp_formats : unit -> unit
  val forbid_new_string_and_sexp_formats : unit -> unit
  val current_string_and_sexp_format : unit -> [ `Force_old | `New | `Old ]
  type hashable = t
  module Hashable : sig type t = hashable end
  val hash : hashable -> int
  module Table :
    sig
      module Key : sig type t = Hashable.t end
      val hashable : Key.t Core_hashtbl_intf.hashable
      type 'a t =
          (Key.t, 'a)
          Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
      val clear :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t -> 
        unit
      val copy :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
      val invariant :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t -> 
        unit
      val fold :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        init:'->
        f:(key:'a
               Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
           data:'-> '-> 'c) ->
        'c
      val iter :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        f:(key:'a
               Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
           data:'-> unit) ->
        unit
      val existsi :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        f:(key:'a
               Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
           data:'-> bool) ->
        bool
      val exists :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        f:('-> bool) -> bool
      val length :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t -> 
        int
      val is_empty :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t -> 
        bool
      val mem :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        'Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
        bool
      val remove :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        'Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
        unit
      val remove_one :
        ('a, 'b list)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        'Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
        unit
      val replace :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        key:'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
        data:'-> unit
      val change :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        'Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
        ('b option -> 'b option) -> unit
      val add_multi :
        ('a, 'b list)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        key:'a
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
        data:'-> unit
      val map :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        f:('-> 'c) ->
        ('a, 'c)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
      val mapi :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        f:(key:'a
               Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
           data:'-> 'c) ->
        ('a, 'c)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
      val filter_map :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        f:('-> 'c option) ->
        ('a, 'c)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
      val filter_mapi :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        f:(key:'a
               Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
           data:'-> 'c option) ->
        ('a, 'c)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
      val filter :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        f:('-> bool) ->
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
      val filteri :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        f:(key:'a
               Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
           data:'-> bool) ->
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
      val find_or_add :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        'Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
        default:(unit -> 'b) -> 'b
      val find :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        'Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
        'b option
      val find_exn :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        'Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
        'b
      val iter_vals :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        f:('-> unit) -> unit
      val merge :
        f:(key:'a
               Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
           'b option -> 'c option -> 'd option) ->
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        ('a, 'c)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        ('a, 'd)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t
      val merge_into :
        f:(key:'a
               Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
           '-> 'b option -> 'b option) ->
        src:('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        dst:('a, 'b)
            Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        unit
      val keys :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        'Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t
        list
      val data :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        'b list
      val filter_inplace :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        f:('-> bool) -> unit
      val filteri_inplace :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        f:('a
           Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
           '-> bool) ->
        unit
      val equal :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        ('-> '-> bool) -> bool
      val to_alist :
        ('a, 'b)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        ('Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t *
         'b)
        list
      val incr :
        ?by:int ->
        ('a, int)
        Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ->
        'Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t ->
        unit
      val create :
        (unit ->
         ('a, 'b)
         Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
        Core_hashtbl_intf.with_options
      val of_alist :
        (('Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t *
          'b)
         list ->
         [ `Duplicate_key of
             'a
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t
         | `Ok of
             ('a, 'b)
             Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t ])
        Core_hashtbl_intf.with_options
      val of_alist_exn :
        (('Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t *
          'b)
         list ->
         ('a, 'b)
         Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
        Core_hashtbl_intf.with_options
      val of_alist_multi :
        (('Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t *
          'b)
         list ->
         ('a, 'b list)
         Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
        Core_hashtbl_intf.with_options
      val create_mapped :
        (get_key:('->
                  'b
                  Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t) ->
         get_data:('-> 'c) ->
         'a list ->
         ('b, 'c)
         Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
        Core_hashtbl_intf.with_options
      val create_with_key :
        (get_key:('->
                  'b
                  Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t) ->
         'a list ->
         ('b, 'a)
         Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
        Core_hashtbl_intf.with_options
      val group :
        (get_key:('->
                  'b
                  Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).Key1.t) ->
         get_data:('-> 'c) ->
         combine:('-> '-> 'c) ->
         'a list ->
         ('b, 'c)
         Core_hashtbl_intf.Monomorphic(Hashable.Hashtbl)(Hashable).T.t)
        Core_hashtbl_intf.with_options
      type 'a sexpable = 'a t
      val sexp_of_t : ('-> Sexplib.Sexp.t) -> 'a sexpable -> Sexplib.Sexp.t
      val t_of_sexp : (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a sexpable
      type 'a binable = 'a t
      val bin_size_t : ('a, 'a binable) Bin_prot.Size.sizer1
      val bin_write_t : ('a, 'a binable) Bin_prot.Map_to_safe.writer1
      val bin_write_t_ : ('a, 'a binable) Bin_prot.Unsafe_write_c.writer1
      val bin_read_t : ('a, 'a binable) Bin_prot.Map_to_safe.reader1
      val bin_read_t_ : ('a, 'a binable) Bin_prot.Unsafe_read_c.reader1
      val bin_read_t__ :
        ('a, int -> 'a binable) Bin_prot.Unsafe_read_c.reader1
      val bin_writer_t : ('a, 'a binable) Bin_prot.Type_class.S1.writer
      val bin_reader_t : ('a, 'a binable) Bin_prot.Type_class.S1.reader
      val bin_t : ('a, 'a binable) Bin_prot.Type_class.S1.t
    end
  module Hash_set :
    sig
      type elem = hashable
      type t = elem Hash_set.t
      type sexpable = t
      val sexp_of_t : sexpable -> Sexplib.Sexp.t
      val t_of_sexp : Sexplib.Sexp.t -> sexpable
      type binable = t
      val bin_size_t : binable Bin_prot.Size.sizer
      val bin_write_t : binable Bin_prot.Map_to_safe.writer
      val bin_write_t_ : binable Bin_prot.Unsafe_write_c.writer
      val bin_read_t : binable Bin_prot.Read_ml.reader
      val bin_read_t_ : binable Bin_prot.Unsafe_read_c.reader
      val bin_read_t__ : (int -> binable) Bin_prot.Unsafe_read_c.reader
      val bin_writer_t : binable Bin_prot.Type_class.writer
      val bin_reader_t : binable Bin_prot.Type_class.reader
      val bin_t : binable Bin_prot.Type_class.t
      val create : ?growth_allowed:bool -> ?size:int -> unit -> t
      val of_list : elem list -> t
    end
  module Hash_queue :
    sig
      module Key :
        sig
          type t = hashable
          val compare : t -> t -> int
          val hash : t -> int
          type sexpable = t
          val sexp_of_t : sexpable -> Sexplib.Sexp.t
          val t_of_sexp : Sexplib.Sexp.t -> sexpable
        end
      type 'a t = 'Time.Hash_queue.t
      type 'a container = 'a t
      val length : 'a container -> int
      val is_empty : 'a container -> bool
      val iter : 'a container -> f:('-> unit) -> unit
      val fold : 'a container -> init:'-> f:('-> '-> 'b) -> 'b
      val exists : 'a container -> f:('-> bool) -> bool
      val for_all : 'a container -> f:('-> bool) -> bool
      val find : 'a container -> f:('-> bool) -> 'a option
      val to_list : 'a container -> 'a list
      val to_array : 'a container -> 'a array
      val container : ('a, 'a container) Container.type_class
      val invariant : 'a t -> unit
      val create : unit -> 'a t
      val clear : 'a t -> unit
      val mem : 'a t -> Key.t -> bool
      val lookup : 'a t -> Key.t -> 'a option
      val lookup_exn : 'a t -> Key.t -> 'a
      val enqueue : 'a t -> Key.t -> '-> [ `Key_already_present | `Ok ]
      val enqueue_exn : 'a t -> Key.t -> '-> unit
      val keys : 'a t -> Key.t list
      val dequeue : 'a t -> 'a option
      val dequeue_exn : 'a t -> 'a
      val dequeue_with_key : 'a t -> (Key.t * 'a) option
      val dequeue_with_key_exn : 'a t -> Key.t * 'a
      val dequeue_all : 'a t -> f:('-> unit) -> unit
      val remove : 'a t -> Key.t -> [ `No_such_key | `Ok ]
      val remove_exn : 'a t -> Key.t -> unit
      val replace : 'a t -> Key.t -> '-> [ `No_such_key | `Ok ]
      val replace_exn : 'a t -> Key.t -> '-> unit
      val iteri : 'a t -> f:(key:Key.t -> data:'-> unit) -> unit
      val foldi :
        'a t -> init:'-> f:('-> key:Key.t -> data:'-> 'b) -> 'b
    end
  module Hash_heap :
    sig
      module Key :
        sig
          type t = hashable
          val compare : t -> t -> int
          val hash : t -> int
          type sexpable = t
          val sexp_of_t : sexpable -> Sexplib.Sexp.t
          val t_of_sexp : Sexplib.Sexp.t -> sexpable
        end
      type 'a t = 'Time.Hash_heap.t
      val create : ?min_size:int -> ('-> '-> int) -> 'a t
      val copy : 'a t -> 'a t
      val push :
        'a t -> key:Key.t -> data:'-> [ `Key_already_present | `Ok ]
      val push_exn : 'a t -> key:Key.t -> data:'-> unit
      val replace : 'a t -> key:Key.t -> data:'-> unit
      val remove : 'a t -> Key.t -> unit
      val mem : 'a t -> Key.t -> bool
      val top : 'a t -> 'a option
      val top_exn : 'a t -> 'a
      val top_with_key : 'a t -> (Key.t * 'a) option
      val top_with_key_exn : 'a t -> Key.t * 'a
      val pop_with_key : 'a t -> (Key.t * 'a) option
      val pop_with_key_exn : 'a t -> Key.t * 'a
      val pop : 'a t -> 'a option
      val pop_exn : 'a t -> 'a
      val cond_pop_with_key :
        'a t -> (key:Key.t -> data:'-> bool) -> (Key.t * 'a) option
      val cond_pop : 'a t -> ('-> bool) -> 'a option
      val find : 'a t -> Key.t -> 'a option
      val find_pop : 'a t -> Key.t -> 'a option
      val find_exn : 'a t -> Key.t -> 'a
      val find_pop_exn : 'a t -> Key.t -> 'a
      val iter : 'a t -> f:(key:Key.t -> data:'-> unit) -> unit
      val iter_vals : 'a t -> f:('-> unit) -> unit
    end
  type comparable = t
  val ( >= ) : comparable -> comparable -> bool
  val ( <= ) : comparable -> comparable -> bool
  val ( = ) : comparable -> comparable -> bool
  val ( > ) : comparable -> comparable -> bool
  val ( < ) : comparable -> comparable -> bool
  val ( <> ) : comparable -> comparable -> bool
  val equal : comparable -> comparable -> bool
  val compare : comparable -> comparable -> int
  val ascending : comparable -> comparable -> int
  val descending : comparable -> comparable -> int
  val min : comparable -> comparable -> comparable
  val max : comparable -> comparable -> comparable
  module Map :
    sig
      type key = comparable
      type 'a t = 'Time.Map.t
      module T : sig type 'a key = key type ('a, 'b) t = 'b t end
      type 'a sexpable = 'a t
      val sexp_of_t : ('-> Sexplib.Sexp.t) -> 'a sexpable -> Sexplib.Sexp.t
      val t_of_sexp : (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a sexpable
      val empty : 'a t
      val singleton : key -> '-> 'a t
      val is_empty : 'a t -> bool
      val cardinal : 'a t -> int
      val add : key:key -> data:'-> 'a t -> 'a t
      val add_multi : key:key -> data:'-> 'a list t -> 'a list t
      val change : 'a t -> key -> ('a option -> 'a option) -> 'a t
      val find_exn : 'a t -> key -> 'a
      val find : 'a t -> key -> 'a option
      val remove : 'a t -> key -> 'a t
      val mem : 'a t -> key -> bool
      val iter : f:(key:key -> data:'-> unit) -> 'a t -> unit
      val map : f:('-> 'b) -> 'a t -> 'b t
      val mapi : f:(key:key -> data:'-> 'b) -> 'a t -> 'b t
      val fold : f:(key:key -> data:'-> '-> 'b) -> 'a t -> init:'-> 'b
      val fold_right :
        f:(key:key -> data:'-> '-> 'b) -> 'a t -> init:'-> 'b
      val filter : f:(key:key -> data:'-> bool) -> 'a t -> 'a t
      val filter_map : f:('-> 'b option) -> 'a t -> 'b t
      val filter_mapi : f:(key:key -> data:'-> 'b option) -> 'a t -> 'b t
      val compare : ('-> '-> int) -> 'a t -> 'a t -> int
      val equal : ('-> '-> bool) -> 'a t -> 'a t -> bool
      val keys : 'a t -> key list
      val has_key : 'a t -> key -> bool
      val data : 'a t -> 'a list
      val of_alist :
        (key * 'a) list -> [ `Duplicate_key of key | `Ok of 'a t ]
      val of_alist_exn : (key * 'a) list -> 'a t
      val of_alist_multi : (key * 'a) list -> 'a list t
      val to_alist : 'a t -> (key * 'a) list
      val combine_alist :
        (key * 'a) list -> init:'-> f:('-> '-> 'b) -> 'b t
      val merge :
        f:(key:key -> 'a option -> 'b option -> 'c option) ->
        'a t -> 'b t -> 'c t
      val min_elt : 'a t -> (key * 'a) option
      val min_elt_exn : 'a t -> key * 'a
      val max_elt : 'a t -> (key * 'a) option
      val max_elt_exn : 'a t -> key * 'a
      val for_all : f:('-> bool) -> 'a t -> bool
      val exists : f:('-> bool) -> 'a t -> bool
      val fold_range_inclusive :
        'a t ->
        min:key ->
        max:key -> init:'-> f:(key:key -> data:'-> '-> 'b) -> 'b
      val range_to_alist : 'a t -> min:key -> max:key -> (key * 'a) list
      val prev_key : 'a t -> key -> key option
      val next_key : 'a t -> key -> key option
      val rank : 'a t -> key -> int option
      type 'a binable = 'a t
      val bin_size_t : ('a, 'a binable) Bin_prot.Size.sizer1
      val bin_write_t : ('a, 'a binable) Bin_prot.Map_to_safe.writer1
      val bin_write_t_ : ('a, 'a binable) Bin_prot.Unsafe_write_c.writer1
      val bin_read_t : ('a, 'a binable) Bin_prot.Map_to_safe.reader1
      val bin_read_t_ : ('a, 'a binable) Bin_prot.Unsafe_read_c.reader1
      val bin_read_t__ :
        ('a, int -> 'a binable) Bin_prot.Unsafe_read_c.reader1
      val bin_writer_t : ('a, 'a binable) Bin_prot.Type_class.S1.writer
      val bin_reader_t : ('a, 'a binable) Bin_prot.Type_class.S1.reader
      val bin_t : ('a, 'a binable) Bin_prot.Type_class.S1.t
    end
  module Set :
    sig
      type elt = comparable
      type t = Time.Set.t
      module T : sig type 'a elt = elt type 'a t = t end
      type sexpable = t
      val sexp_of_t : sexpable -> Sexplib.Sexp.t
      val t_of_sexp : Sexplib.Sexp.t -> sexpable
      val empty : t
      val is_empty : t -> bool
      val mem : t -> elt -> bool
      val add : t -> elt -> t
      val singleton : elt -> t
      val remove : t -> elt -> t
      val union : t -> t -> t
      val union_list : t list -> t
      val inter : t -> t -> t
      val diff : t -> t -> t
      val compare : t -> t -> int
      val equal : t -> t -> bool
      val subset : t -> t -> bool
      val iter : t -> f:(elt -> unit) -> unit
      val fold : t -> init:'-> f:(elt -> '-> 'a) -> 'a
      val fold_until :
        t ->
        init:'-> f:(elt -> '-> [ `Continue of '| `Stop of 'a ]) -> 'a
      val for_all : t -> f:(elt -> bool) -> bool
      val exists : t -> f:(elt -> bool) -> bool
      val filter : t -> f:(elt -> bool) -> t
      val partition : t -> f:(elt -> bool) -> t * t
      val cardinal : t -> int
      val length : t -> int
      val elements : t -> elt list
      val min_elt : t -> elt option
      val min_elt_exn : t -> elt
      val max_elt : t -> elt option
      val max_elt_exn : t -> elt
      val choose : t -> elt option
      val choose_exn : t -> elt
      val of_list : elt list -> t
      val to_list : t -> elt list
      val of_array : elt array -> t
      val to_array : t -> elt array
      val split : elt -> t -> t * bool * t
      val group_by : t -> equiv:(elt -> elt -> bool) -> t list
      val find : t -> f:(elt -> bool) -> elt option
      val find_exn : t -> f:(elt -> bool) -> elt
      val find_index : t -> int -> elt option
      val remove_index : t -> int -> t
      type binable = t
      val bin_size_t : binable Bin_prot.Size.sizer
      val bin_write_t : binable Bin_prot.Map_to_safe.writer
      val bin_write_t_ : binable Bin_prot.Unsafe_write_c.writer
      val bin_read_t : binable Bin_prot.Read_ml.reader
      val bin_read_t_ : binable Bin_prot.Unsafe_read_c.reader
      val bin_read_t__ : (int -> binable) Bin_prot.Unsafe_read_c.reader
      val bin_writer_t : binable Bin_prot.Type_class.writer
      val bin_reader_t : binable Bin_prot.Type_class.reader
      val bin_t : binable Bin_prot.Type_class.t
    end
  type robustly_comparable = t
  val ( >=. ) : robustly_comparable -> robustly_comparable -> bool
  val ( <=. ) : robustly_comparable -> robustly_comparable -> bool
  val ( =. ) : robustly_comparable -> robustly_comparable -> bool
  val ( >. ) : robustly_comparable -> robustly_comparable -> bool
  val ( <. ) : robustly_comparable -> robustly_comparable -> bool
  val ( <>. ) : robustly_comparable -> robustly_comparable -> bool
  type sexpable = t
  val sexp_of_t : sexpable -> Sexplib.Sexp.t
  val t_of_sexp : Sexplib.Sexp.t -> sexpable
  type binable = t
  val bin_size_t : binable Bin_prot.Size.sizer
  val bin_write_t : binable Bin_prot.Map_to_safe.writer
  val bin_write_t_ : binable Bin_prot.Unsafe_write_c.writer
  val bin_read_t : binable Bin_prot.Read_ml.reader
  val bin_read_t_ : binable Bin_prot.Unsafe_read_c.reader
  val bin_read_t__ : (int -> binable) Bin_prot.Unsafe_read_c.reader
  val bin_writer_t : binable Bin_prot.Type_class.writer
  val bin_reader_t : binable Bin_prot.Type_class.reader
  val bin_t : binable Bin_prot.Type_class.t
  type stringable = t
  val of_string : string -> stringable
  val to_string : stringable -> string
  type floatable = t
  val of_float : float -> floatable
  val to_float : floatable -> float
  val epoch : t
  val add : t -> Span.t -> t
  val sub : t -> Span.t -> t
  val diff : t -> t -> Span.t
  val abs_diff : t -> t -> Span.t
  val of_date_ofday : Zone.t -> Date.t -> Ofday.t -> t
  val to_date_ofday : t -> Zone.t -> Date.t * Ofday.t
  val to_date : t -> Zone.t -> Date.t
  val to_ofday : t -> Zone.t -> Ofday.t
  val of_local_date_ofday : Date.t -> Ofday.t -> t
  val to_local_date_ofday : t -> Date.t * Ofday.t
  val to_local_date : t -> Date.t
  val to_local_ofday : t -> Ofday.t
  val convert :
    from_tz:Zone.t -> to_tz:Zone.t -> Date.t -> Ofday.t -> Date.t * Ofday.t
  val to_filename_string : t -> string
  val of_filename_string : string -> t
  val to_string_fix_proto : [ `Local | `Utc ] -> t -> string
  val of_string_fix_proto : [ `Local | `Utc ] -> string -> t
  val to_string_trimmed : t -> string
  val to_sec_string : t -> string
  val to_localized_string : t -> Zone.t -> string
  val of_localized_string : Zone.t -> string -> t
  val to_string_deprecated : t -> string
  val to_string_abs : t -> string
  val of_date_time_strings : string -> string -> t
  val of_date_time_strings_utc : string -> string -> t
  val pp : Format.formatter -> t -> unit
  val now : unit -> t
  val pause : Span.t -> unit
  val interruptible_pause : Span.t -> [ `Ok | `Remaining of Span.t ]
  val pause_forever : unit -> Std_internal.never_returns
  val ofday_occurrence :
    Ofday.t -> [ `right_after | `right_before ] -> t -> t
  val ofday_occurrence_utc :
    Ofday.t -> [ `right_after | `right_before ] -> t -> t
  val format : t -> string -> string
  val to_epoch : t -> float
end