sig
  module Time :
    sig
      module Ofday :
        sig
          type t = Ofday.t
          val ( >= ) : t -> t -> bool
          val ( <= ) : t -> t -> bool
          val ( = ) : t -> t -> bool
          val ( > ) : t -> t -> bool
          val ( < ) : t -> t -> bool
          val ( <> ) : t -> t -> bool
          val equal : t -> t -> bool
          val compare : t -> t -> int
          val min : t -> t -> t
          val max : t -> t -> t
          val ascending : t -> t -> int
          val descending : t -> t -> int
          val between : t -> low:t -> high:t -> bool
          module Replace_polymorphic_compare :
            sig
              val ( >= ) : t -> t -> bool
              val ( <= ) : t -> t -> bool
              val ( = ) : t -> t -> bool
              val ( > ) : t -> t -> bool
              val ( < ) : t -> t -> bool
              val ( <> ) : t -> t -> bool
              val equal : t -> t -> bool
              val compare : t -> t -> int
              val min : t -> t -> t
              val max : t -> t -> t
              val _squelch_unused_module_warning_ : unit
            end
          type comparator_witness = Time.Ofday.comparator_witness
          val validate_lbound :
            min:t Core_kernel.Comparable_intf.bound ->
            t Core_kernel.Validate.check
          val validate_ubound :
            max:t Core_kernel.Comparable_intf.bound ->
            t Core_kernel.Validate.check
          val validate_bound :
            min:t Core_kernel.Comparable_intf.bound ->
            max:t Core_kernel.Comparable_intf.bound ->
            t Core_kernel.Validate.check
          val comparator :
            (t, comparator_witness) Core_kernel.Comparator.comparator
          module Map :
            sig
              module Key :
                sig
                  type t = t
                  type comparator_witness = comparator_witness
                  val comparator :
                    (t, comparator_witness) Core_kernel.Comparator.comparator
                end
              module Tree :
                sig
                  type 'a t =
                      (Key.t, 'a, Key.comparator_witness)
                      Core_kernel.Core_map.Tree.t
                  val empty : 'a t
                  val singleton : Key.t -> '-> 'a t
                  val of_alist :
                    (Key.t * 'a) list ->
                    [ `Duplicate_key of Key.t | `Ok of 'a t ]
                  val of_alist_or_error :
                    (Key.t * 'a) list -> 'a t Core_kernel.Or_error.t
                  val of_alist_exn : (Key.t * 'a) list -> 'a t
                  val of_alist_multi : (Key.t * 'a) list -> 'a list t
                  val of_alist_fold :
                    (Key.t * 'a) list ->
                    init:'-> f:('-> '-> 'b) -> 'b t
                  val of_alist_reduce :
                    (Key.t * 'a) list -> f:('-> '-> 'a) -> 'a t
                  val of_sorted_array :
                    (Key.t * 'a) array -> 'a t Core_kernel.Or_error.t
                  val of_sorted_array_unchecked : (Key.t * 'a) array -> 'a t
                  val of_tree : 'a t -> 'a t
                  val invariants : 'a t -> bool
                  val is_empty : 'a t -> bool
                  val length : 'a t -> int
                  val add : 'a t -> key:Key.t -> data:'-> 'a t
                  val add_multi :
                    'a list t -> key:Key.t -> data:'-> 'a list t
                  val change :
                    'a t -> Key.t -> ('a option -> 'a option) -> 'a t
                  val find : 'a t -> Key.t -> 'a option
                  val find_exn : 'a t -> Key.t -> 'a
                  val remove : 'a t -> Key.t -> 'a t
                  val mem : 'a t -> Key.t -> bool
                  val iter : 'a t -> f:(key:Key.t -> data:'-> unit) -> unit
                  val iter2 :
                    'a t ->
                    'b t ->
                    f:(key:Key.t ->
                       data:[ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                       unit) ->
                    unit
                  val map : 'a t -> f:('-> 'b) -> 'b t
                  val mapi : 'a t -> f:(key:Key.t -> data:'-> 'b) -> 'b t
                  val fold :
                    'a t ->
                    init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
                  val fold_right :
                    'a t ->
                    init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
                  val filter :
                    'a t -> f:(key:Key.t -> data:'-> bool) -> 'a t
                  val filter_map : 'a t -> f:('-> 'b option) -> 'b t
                  val filter_mapi :
                    'a t -> f:(key:Key.t -> data:'-> 'b option) -> 'b t
                  val compare_direct :
                    ('-> '-> int) -> 'a t -> 'a t -> int
                  val equal : ('-> '-> bool) -> 'a t -> 'a t -> bool
                  val keys : 'a t -> Key.t list
                  val data : 'a t -> 'a list
                  val to_alist : 'a t -> (Key.t * 'a) list
                  val validate :
                    name:(Key.t -> string) ->
                    'Core_kernel.Validate.check ->
                    'a t Core_kernel.Validate.check
                  val merge :
                    'a t ->
                    'b t ->
                    f:(key:Key.t ->
                       [ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                       'c option) ->
                    'c t
                  val symmetric_diff :
                    'a t ->
                    'a t ->
                    data_equal:('-> '-> bool) ->
                    (Key.t *
                     [ `Left of '| `Right of '| `Unequal of 'a * 'a ])
                    Core_kernel.Sequence.t
                  val min_elt : 'a t -> (Key.t * 'a) option
                  val min_elt_exn : 'a t -> Key.t * 'a
                  val max_elt : 'a t -> (Key.t * 'a) option
                  val max_elt_exn : 'a t -> Key.t * 'a
                  val for_all : 'a t -> f:('-> bool) -> bool
                  val exists : 'a t -> f:('-> bool) -> bool
                  val split :
                    'a t -> Key.t -> 'a t * (Key.t * 'a) option * 'a t
                  val fold_range_inclusive :
                    'a t ->
                    min:Key.t ->
                    max:Key.t ->
                    init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
                  val range_to_alist :
                    'a t -> min:Key.t -> max:Key.t -> (Key.t * 'a) list
                  val closest_key :
                    'a t ->
                    [ `Greater_or_equal_to
                    | `Greater_than
                    | `Less_or_equal_to
                    | `Less_than ] -> Key.t -> (Key.t * 'a) option
                  val nth : 'a t -> int -> (Key.t * 'a) option
                  val rank : 'a t -> Key.t -> int option
                  val to_tree : 'a t -> 'a t
                  val to_sequence :
                    ?order:[ `Decreasing_key | `Increasing_key ] ->
                    ?keys_greater_or_equal_to:Key.t ->
                    ?keys_less_or_equal_to:Key.t ->
                    'a t -> (Key.t * 'a) Core_kernel.Sequence.t
                  val t_of_sexp :
                    (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a t
                  val sexp_of_t :
                    ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
                end
              type 'a t =
                  (Key.t, 'a, Key.comparator_witness) Core_kernel.Core_map.t
              val empty : 'a t
              val singleton : Key.t -> '-> 'a t
              val of_alist :
                (Key.t * 'a) list ->
                [ `Duplicate_key of Key.t | `Ok of 'a t ]
              val of_alist_or_error :
                (Key.t * 'a) list -> 'a t Core_kernel.Or_error.t
              val of_alist_exn : (Key.t * 'a) list -> 'a t
              val of_alist_multi : (Key.t * 'a) list -> 'a list t
              val of_alist_fold :
                (Key.t * 'a) list -> init:'-> f:('-> '-> 'b) -> 'b t
              val of_alist_reduce :
                (Key.t * 'a) list -> f:('-> '-> 'a) -> 'a t
              val of_sorted_array :
                (Key.t * 'a) array -> 'a t Core_kernel.Or_error.t
              val of_sorted_array_unchecked : (Key.t * 'a) array -> 'a t
              val of_tree : 'Tree.t -> 'a t
              val invariants : 'a t -> bool
              val is_empty : 'a t -> bool
              val length : 'a t -> int
              val add : 'a t -> key:Key.t -> data:'-> 'a t
              val add_multi : 'a list t -> key:Key.t -> data:'-> 'a list t
              val change : 'a t -> Key.t -> ('a option -> 'a option) -> 'a t
              val find : 'a t -> Key.t -> 'a option
              val find_exn : 'a t -> Key.t -> 'a
              val remove : 'a t -> Key.t -> 'a t
              val mem : 'a t -> Key.t -> bool
              val iter : 'a t -> f:(key:Key.t -> data:'-> unit) -> unit
              val iter2 :
                'a t ->
                'b t ->
                f:(key:Key.t ->
                   data:[ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                   unit) ->
                unit
              val map : 'a t -> f:('-> 'b) -> 'b t
              val mapi : 'a t -> f:(key:Key.t -> data:'-> 'b) -> 'b t
              val fold :
                'a t -> init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
              val fold_right :
                'a t -> init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
              val filter : 'a t -> f:(key:Key.t -> data:'-> bool) -> 'a t
              val filter_map : 'a t -> f:('-> 'b option) -> 'b t
              val filter_mapi :
                'a t -> f:(key:Key.t -> data:'-> 'b option) -> 'b t
              val compare_direct : ('-> '-> int) -> 'a t -> 'a t -> int
              val equal : ('-> '-> bool) -> 'a t -> 'a t -> bool
              val keys : 'a t -> Key.t list
              val data : 'a t -> 'a list
              val to_alist : 'a t -> (Key.t * 'a) list
              val validate :
                name:(Key.t -> string) ->
                'Core_kernel.Validate.check ->
                'a t Core_kernel.Validate.check
              val merge :
                'a t ->
                'b t ->
                f:(key:Key.t ->
                   [ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                   'c option) ->
                'c t
              val symmetric_diff :
                'a t ->
                'a t ->
                data_equal:('-> '-> bool) ->
                (Key.t * [ `Left of '| `Right of '| `Unequal of 'a * 'a ])
                Core_kernel.Sequence.t
              val min_elt : 'a t -> (Key.t * 'a) option
              val min_elt_exn : 'a t -> Key.t * 'a
              val max_elt : 'a t -> (Key.t * 'a) option
              val max_elt_exn : 'a t -> Key.t * 'a
              val for_all : 'a t -> f:('-> bool) -> bool
              val exists : 'a t -> f:('-> bool) -> bool
              val split : 'a t -> Key.t -> 'a t * (Key.t * 'a) option * 'a t
              val fold_range_inclusive :
                'a t ->
                min:Key.t ->
                max:Key.t ->
                init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
              val range_to_alist :
                'a t -> min:Key.t -> max:Key.t -> (Key.t * 'a) list
              val closest_key :
                'a t ->
                [ `Greater_or_equal_to
                | `Greater_than
                | `Less_or_equal_to
                | `Less_than ] -> Key.t -> (Key.t * 'a) option
              val nth : 'a t -> int -> (Key.t * 'a) option
              val rank : 'a t -> Key.t -> int option
              val to_tree : 'a t -> 'Tree.t
              val to_sequence :
                ?order:[ `Decreasing_key | `Increasing_key ] ->
                ?keys_greater_or_equal_to:Key.t ->
                ?keys_less_or_equal_to:Key.t ->
                'a t -> (Key.t * 'a) Core_kernel.Sequence.t
              val t_of_sexp :
                (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a t
              val sexp_of_t :
                ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
              val compare : ('-> '-> int) -> 'a t -> 'a t -> int
              val bin_size_t : ('a, 'a t) Bin_prot.Size.sizer1
              val bin_write_t : ('a, 'a t) Bin_prot.Write.writer1
              val bin_read_t : ('a, 'a t) Bin_prot.Read.reader1
              val __bin_read_t__ : ('a, int -> 'a t) Bin_prot.Read.reader1
              val bin_writer_t : ('a, 'a t) Bin_prot.Type_class.S1.writer
              val bin_reader_t : ('a, 'a t) Bin_prot.Type_class.S1.reader
              val bin_t : ('a, 'a t) Bin_prot.Type_class.S1.t
            end
          module Set :
            sig
              module Elt :
                sig
                  type t = t
                  type comparator_witness = comparator_witness
                  val comparator :
                    (t, comparator_witness) Core_kernel.Comparator.comparator
                  val t_of_sexp : Sexplib.Sexp.t -> t
                  val sexp_of_t : t -> Sexplib.Sexp.t
                end
              module Tree :
                sig
                  type t =
                      (Elt.t, Elt.comparator_witness)
                      Core_kernel.Core_set.Tree.t
                  val length : t -> int
                  val is_empty : t -> bool
                  val iter : t -> f:(Elt.t -> unit) -> unit
                  val fold :
                    t ->
                    init:'accum -> f:('accum -> Elt.t -> 'accum) -> 'accum
                  val exists : t -> f:(Elt.t -> bool) -> bool
                  val for_all : t -> f:(Elt.t -> bool) -> bool
                  val count : t -> f:(Elt.t -> bool) -> int
                  val sum :
                    (module Core_kernel.Commutative_group.S with type t = 'sum) ->
                    t -> f:(Elt.t -> 'sum) -> 'sum
                  val find : t -> f:(Elt.t -> bool) -> Elt.t option
                  val find_map : t -> f:(Elt.t -> 'a option) -> 'a option
                  val to_list : t -> Elt.t list
                  val to_array : t -> Elt.t array
                  val invariants : t -> bool
                  val mem : t -> Elt.t -> bool
                  val add : t -> Elt.t -> t
                  val remove : t -> Elt.t -> t
                  val union : t -> t -> t
                  val inter : t -> t -> t
                  val diff : t -> t -> t
                  val symmetric_diff :
                    t ->
                    t ->
                    (Elt.t, Elt.t) Core_kernel.Either.t
                    Core_kernel.Sequence.t
                  val compare_direct : t -> t -> int
                  val equal : t -> t -> bool
                  val subset : t -> t -> bool
                  val fold_until :
                    t ->
                    init:'->
                    f:('-> Elt.t -> [ `Continue of '| `Stop of 'b ]) ->
                    'b
                  val fold_right :
                    t -> init:'-> f:(Elt.t -> '-> 'b) -> 'b
                  val iter2 :
                    t ->
                    t ->
                    f:([ `Both of Elt.t * Elt.t
                       | `Left of Elt.t
                       | `Right of Elt.t ] -> unit) ->
                    unit
                  val filter : t -> f:(Elt.t -> bool) -> t
                  val partition_tf : t -> f:(Elt.t -> bool) -> t * t
                  val elements : t -> Elt.t list
                  val min_elt : t -> Elt.t option
                  val min_elt_exn : t -> Elt.t
                  val max_elt : t -> Elt.t option
                  val max_elt_exn : t -> Elt.t
                  val choose : t -> Elt.t option
                  val choose_exn : t -> Elt.t
                  val split : t -> Elt.t -> t * Elt.t option * t
                  val group_by :
                    t -> equiv:(Elt.t -> Elt.t -> bool) -> t list
                  val find_exn : t -> f:(Elt.t -> bool) -> Elt.t
                  val find_index : t -> int -> Elt.t option
                  val remove_index : t -> int -> t
                  val to_tree : t -> t
                  val to_sequence :
                    ?order:[ `Decreasing | `Increasing ] ->
                    ?greater_or_equal_to:Elt.t ->
                    ?less_or_equal_to:Elt.t ->
                    t -> Elt.t Core_kernel.Sequence.t
                  val to_map :
                    t ->
                    f:(Elt.t -> 'data) ->
                    (Elt.t, 'data, Elt.comparator_witness)
                    Core_kernel.Core_set_intf.Map.t
                  val empty : t
                  val singleton : Elt.t -> t
                  val union_list : t list -> t
                  val of_list : Elt.t list -> t
                  val of_array : Elt.t array -> t
                  val of_sorted_array :
                    Elt.t array -> t Core_kernel.Or_error.t
                  val of_sorted_array_unchecked : Elt.t array -> t
                  val stable_dedup_list : Elt.t list -> Elt.t list
                  val map :
                    ('a, 'b) Core_kernel.Core_set.Tree.t ->
                    f:('-> Elt.t) -> t
                  val filter_map :
                    ('a, 'b) Core_kernel.Core_set.Tree.t ->
                    f:('-> Elt.t option) -> t
                  val of_tree : t -> t
                  val of_map_keys :
                    (Elt.t, 'a, Elt.comparator_witness)
                    Core_kernel.Core_set_intf.Map.t -> t
                  val t_of_sexp : Sexplib.Sexp.t -> t
                  val sexp_of_t : t -> Sexplib.Sexp.t
                  val compare : t -> t -> int
                end
              type t = (Elt.t, Elt.comparator_witness) Core_kernel.Core_set.t
              val length : t -> int
              val is_empty : t -> bool
              val iter : t -> f:(Elt.t -> unit) -> unit
              val fold :
                t -> init:'accum -> f:('accum -> Elt.t -> 'accum) -> 'accum
              val exists : t -> f:(Elt.t -> bool) -> bool
              val for_all : t -> f:(Elt.t -> bool) -> bool
              val count : t -> f:(Elt.t -> bool) -> int
              val sum :
                (module Core_kernel.Commutative_group.S with type t = 'sum) ->
                t -> f:(Elt.t -> 'sum) -> 'sum
              val find : t -> f:(Elt.t -> bool) -> Elt.t option
              val find_map : t -> f:(Elt.t -> 'a option) -> 'a option
              val to_list : t -> Elt.t list
              val to_array : t -> Elt.t array
              val invariants : t -> bool
              val mem : t -> Elt.t -> bool
              val add : t -> Elt.t -> t
              val remove : t -> Elt.t -> t
              val union : t -> t -> t
              val inter : t -> t -> t
              val diff : t -> t -> t
              val symmetric_diff :
                t ->
                t ->
                (Elt.t, Elt.t) Core_kernel.Either.t Core_kernel.Sequence.t
              val compare_direct : t -> t -> int
              val equal : t -> t -> bool
              val subset : t -> t -> bool
              val fold_until :
                t ->
                init:'->
                f:('-> Elt.t -> [ `Continue of '| `Stop of 'b ]) -> 'b
              val fold_right : t -> init:'-> f:(Elt.t -> '-> 'b) -> 'b
              val iter2 :
                t ->
                t ->
                f:([ `Both of Elt.t * Elt.t
                   | `Left of Elt.t
                   | `Right of Elt.t ] -> unit) ->
                unit
              val filter : t -> f:(Elt.t -> bool) -> t
              val partition_tf : t -> f:(Elt.t -> bool) -> t * t
              val elements : t -> Elt.t list
              val min_elt : t -> Elt.t option
              val min_elt_exn : t -> Elt.t
              val max_elt : t -> Elt.t option
              val max_elt_exn : t -> Elt.t
              val choose : t -> Elt.t option
              val choose_exn : t -> Elt.t
              val split : t -> Elt.t -> t * Elt.t option * t
              val group_by : t -> equiv:(Elt.t -> Elt.t -> bool) -> t list
              val find_exn : t -> f:(Elt.t -> bool) -> Elt.t
              val find_index : t -> int -> Elt.t option
              val remove_index : t -> int -> t
              val to_tree : t -> Tree.t
              val to_sequence :
                ?order:[ `Decreasing | `Increasing ] ->
                ?greater_or_equal_to:Elt.t ->
                ?less_or_equal_to:Elt.t -> t -> Elt.t Core_kernel.Sequence.t
              val to_map :
                t ->
                f:(Elt.t -> 'data) ->
                (Elt.t, 'data, Elt.comparator_witness)
                Core_kernel.Core_set_intf.Map.t
              val empty : t
              val singleton : Elt.t -> t
              val union_list : t list -> t
              val of_list : Elt.t list -> t
              val of_array : Elt.t array -> t
              val of_sorted_array : Elt.t array -> t Core_kernel.Or_error.t
              val of_sorted_array_unchecked : Elt.t array -> t
              val stable_dedup_list : Elt.t list -> Elt.t list
              val map :
                ('a, 'b) Core_kernel.Core_set.t -> f:('-> Elt.t) -> t
              val filter_map :
                ('a, 'b) Core_kernel.Core_set.t ->
                f:('-> Elt.t option) -> t
              val of_tree : Tree.t -> t
              val of_map_keys :
                (Elt.t, 'a, Elt.comparator_witness)
                Core_kernel.Core_set_intf.Map.t -> t
              val t_of_sexp : Sexplib.Sexp.t -> t
              val sexp_of_t : t -> Sexplib.Sexp.t
              val compare : t -> t -> int
              val bin_size_t : t Bin_prot.Size.sizer
              val bin_write_t : t Bin_prot.Write.writer
              val bin_read_t : t Bin_prot.Read.reader
              val __bin_read_t__ : (int -> t) Bin_prot.Read.reader
              val bin_writer_t : t Bin_prot.Type_class.writer
              val bin_reader_t : t Bin_prot.Type_class.reader
              val bin_t : t Bin_prot.Type_class.t
            end
          val validate_positive : t Core_kernel.Validate.check
          val validate_non_negative : t Core_kernel.Validate.check
          val validate_negative : t Core_kernel.Validate.check
          val validate_non_positive : t Core_kernel.Validate.check
          val is_positive : t -> bool
          val is_non_negative : t -> bool
          val is_negative : t -> bool
          val is_non_positive : t -> bool
          val of_float : float -> t
          val to_float : t -> float
          val hash : t -> int
          val hashable : t Core_kernel.Hashable.Hashtbl.Hashable.t
          module Table :
            sig
              type key = t
              type ('a, 'b) hashtbl = ('a, 'b) Core_kernel.Hashable.Hashtbl.t
              type 'b t = (key, 'b) hashtbl
              type ('a, 'b) t_ = 'b t
              type 'a key_ = key
              val hashable : key Core_kernel.Core_hashtbl_intf.Hashable.t
              val create :
                ('a key_, 'b, unit -> ('a, 'b) t_)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val of_alist :
                ('a key_, 'b,
                 ('a key_ * 'b) list ->
                 [ `Duplicate_key of 'a key_ | `Ok of ('a, 'b) t_ ])
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val of_alist_report_all_dups :
                ('a key_, 'b,
                 ('a key_ * 'b) list ->
                 [ `Duplicate_keys of 'a key_ list | `Ok of ('a, 'b) t_ ])
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val of_alist_or_error :
                ('a key_, 'b,
                 ('a key_ * 'b) list -> ('a, 'b) t_ Core_kernel.Or_error.t)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val of_alist_exn :
                ('a key_, 'b, ('a key_ * 'b) list -> ('a, 'b) t_)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val of_alist_multi :
                ('a key_, 'b list, ('a key_ * 'b) list -> ('a, 'b list) t_)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val create_mapped :
                ('a key_, 'b,
                 get_key:('-> 'a key_) ->
                 get_data:('-> 'b) ->
                 'r list ->
                 [ `Duplicate_keys of 'a key_ list | `Ok of ('a, 'b) t_ ])
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val create_with_key :
                ('a key_, 'r,
                 get_key:('-> 'a key_) ->
                 'r list ->
                 [ `Duplicate_keys of 'a key_ list | `Ok of ('a, 'r) t_ ])
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val create_with_key_or_error :
                ('a key_, 'r,
                 get_key:('-> 'a key_) ->
                 'r list -> ('a, 'r) t_ Core_kernel.Or_error.t)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val create_with_key_exn :
                ('a key_, 'r,
                 get_key:('-> 'a key_) -> 'r list -> ('a, 'r) t_)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val group :
                ('a key_, 'b,
                 get_key:('-> 'a key_) ->
                 get_data:('-> 'b) ->
                 combine:('-> '-> 'b) -> 'r list -> ('a, 'b) t_)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val sexp_of_key : ('a, 'b) t_ -> 'a key_ -> Sexplib.Sexp.t
              val clear : ('a, 'b) t_ -> unit
              val copy : ('a, 'b) t_ -> ('a, 'b) t_
              val invariant : ('a, 'b) t_ -> unit
              val fold :
                ('a, 'b) t_ ->
                init:'-> f:(key:'a key_ -> data:'-> '-> 'c) -> 'c
              val iter :
                ('a, 'b) t_ -> f:(key:'a key_ -> data:'-> unit) -> unit
              val existsi :
                ('a, 'b) t_ -> f:(key:'a key_ -> data:'-> bool) -> bool
              val exists : ('a, 'b) t_ -> f:('-> bool) -> bool
              val for_alli :
                ('a, 'b) t_ -> f:(key:'a key_ -> data:'-> bool) -> bool
              val for_all : ('a, 'b) t_ -> f:('-> bool) -> bool
              val length : ('a, 'b) t_ -> int
              val is_empty : ('a, 'b) t_ -> bool
              val mem : ('a, 'b) t_ -> 'a key_ -> bool
              val remove : ('a, 'b) t_ -> 'a key_ -> unit
              val remove_one : ('a, 'b list) t_ -> 'a key_ -> unit
              val replace : ('a, 'b) t_ -> key:'a key_ -> data:'-> unit
              val set : ('a, 'b) t_ -> key:'a key_ -> data:'-> unit
              val add :
                ('a, 'b) t_ -> key:'a key_ -> data:'-> [ `Duplicate | `Ok ]
              val add_or_error :
                ('a, 'b) t_ ->
                key:'a key_ -> data:'-> unit Core_kernel.Or_error.t
              val add_exn : ('a, 'b) t_ -> key:'a key_ -> data:'-> unit
              val change :
                ('a, 'b) t_ -> 'a key_ -> ('b option -> 'b option) -> unit
              val add_multi :
                ('a, 'b list) t_ -> key:'a key_ -> data:'-> unit
              val remove_multi : ('a, 'b list) t_ -> 'a key_ -> unit
              val map :
                ('c, ('a, 'b) t_ -> f:('-> 'c) -> ('a, 'c) t_)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val mapi :
                ('c,
                 ('a, 'b) t_ ->
                 f:(key:'a key_ -> data:'-> 'c) -> ('a, 'c) t_)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val filter_map :
                ('c, ('a, 'b) t_ -> f:('-> 'c option) -> ('a, 'c) t_)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val filter_mapi :
                ('c,
                 ('a, 'b) t_ ->
                 f:(key:'a key_ -> data:'-> 'c option) -> ('a, 'c) t_)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val filter : ('a, 'b) t_ -> f:('-> bool) -> ('a, 'b) t_
              val filteri :
                ('a, 'b) t_ ->
                f:(key:'a key_ -> data:'-> bool) -> ('a, 'b) t_
              val partition_map :
                ('c,
                 ('d,
                  ('a, 'b) t_ ->
                  f:('-> [ `Fst of '| `Snd of 'd ]) ->
                  ('a, 'c) t_ * ('a, 'd) t_)
                 Core_kernel.Core_hashtbl_intf.no_map_options)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val partition_mapi :
                ('c,
                 ('d,
                  ('a, 'b) t_ ->
                  f:(key:'a key_ -> data:'-> [ `Fst of '| `Snd of 'd ]) ->
                  ('a, 'c) t_ * ('a, 'd) t_)
                 Core_kernel.Core_hashtbl_intf.no_map_options)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val partition_tf :
                ('a, 'b) t_ -> f:('-> bool) -> ('a, 'b) t_ * ('a, 'b) t_
              val partitioni_tf :
                ('a, 'b) t_ ->
                f:(key:'a key_ -> data:'-> bool) ->
                ('a, 'b) t_ * ('a, 'b) t_
              val find_or_add :
                ('a, 'b) t_ -> 'a key_ -> default:(unit -> 'b) -> 'b
              val find : ('a, 'b) t_ -> 'a key_ -> 'b option
              val find_exn : ('a, 'b) t_ -> 'a key_ -> 'b
              val find_and_call :
                ('a, 'b) t_ ->
                'a key_ ->
                if_found:('-> 'c) -> if_not_found:('a key_ -> 'c) -> 'c
              val find_and_remove : ('a, 'b) t_ -> 'a key_ -> 'b option
              val iter_vals : ('a, 'b) t_ -> f:('-> unit) -> unit
              val merge :
                ('c,
                 ('k, 'a) t_ ->
                 ('k, 'b) t_ ->
                 f:(key:'k key_ ->
                    [ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                    'c option) ->
                 ('k, 'c) t_)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val merge_into :
                f:(key:'a key_ -> '-> 'c option -> 'c option) ->
                src:('a, 'b) t_ -> dst:('a, 'c) t_ -> unit
              val keys : ('a, 'b) t_ -> 'a key_ list
              val data : ('a, 'b) t_ -> 'b list
              val filter_inplace : ('a, 'b) t_ -> f:('-> bool) -> unit
              val filteri_inplace :
                ('a, 'b) t_ -> f:('a key_ -> '-> bool) -> unit
              val equal :
                ('a, 'b) t_ -> ('a, 'b) t_ -> ('-> '-> bool) -> bool
              val similar :
                ('a, 'b1) t_ -> ('a, 'b2) t_ -> ('b1 -> 'b2 -> bool) -> bool
              val to_alist : ('a, 'b) t_ -> ('a key_ * 'b) list
              val validate :
                name:('a key_ -> string) ->
                'Core_kernel.Validate.check ->
                ('a, 'b) t_ Core_kernel.Validate.check
              val incr : ?by:int -> ('a, int) t_ -> 'a key_ -> unit
              val t_of_sexp :
                (Sexplib.Sexp.t -> 'b) -> Sexplib.Sexp.t -> 'b t
              val sexp_of_t :
                ('-> Sexplib.Sexp.t) -> 'b t -> Sexplib.Sexp.t
              val bin_size_t : ('a, 'a t) Bin_prot.Size.sizer1
              val bin_write_t : ('a, 'a t) Bin_prot.Write.writer1
              val bin_read_t : ('a, 'a t) Bin_prot.Read.reader1
              val __bin_read_t__ : ('a, int -> 'a t) Bin_prot.Read.reader1
              val bin_writer_t : ('a, 'a t) Bin_prot.Type_class.S1.writer
              val bin_reader_t : ('a, 'a t) Bin_prot.Type_class.S1.reader
              val bin_t : ('a, 'a t) Bin_prot.Type_class.S1.t
            end
          module Hash_set :
            sig
              type elt = t
              type 'a hash_set = 'Core_kernel.Hash_set.t
              type t = elt hash_set
              type 'a t_ = t
              type 'a elt_ = elt
              val create :
                ('a, unit -> 'a t_)
                Core_kernel.Hash_set_intf.create_options_without_hashable
              val of_list :
                ('a, 'a elt_ list -> 'a t_)
                Core_kernel.Hash_set_intf.create_options_without_hashable
              val t_of_sexp : Sexplib.Sexp.t -> t
              val sexp_of_t : t -> Sexplib.Sexp.t
              val bin_size_t : t Bin_prot.Size.sizer
              val bin_write_t : t Bin_prot.Write.writer
              val bin_read_t : t Bin_prot.Read.reader
              val __bin_read_t__ : (int -> t) Bin_prot.Read.reader
              val bin_writer_t : t Bin_prot.Type_class.writer
              val bin_reader_t : t Bin_prot.Type_class.reader
              val bin_t : t Bin_prot.Type_class.t
            end
          module Hash_queue :
            sig
              module Key :
                sig
                  type t = t
                  val hash : t -> int
                  val t_of_sexp : Sexplib.Sexp.t -> t
                  val sexp_of_t : t -> Sexplib.Sexp.t
                  val compare : t -> t -> int
                end
              type 'a t = 'Time.Ofday.Hash_queue.t
              val length : 'a t -> int
              val is_empty : 'a t -> bool
              val iter : 'a t -> f:('-> unit) -> unit
              val fold :
                'a t -> init:'accum -> f:('accum -> '-> 'accum) -> 'accum
              val exists : 'a t -> f:('-> bool) -> bool
              val for_all : 'a t -> f:('-> bool) -> bool
              val count : 'a t -> f:('-> bool) -> int
              val sum :
                (module Core_kernel.Commutative_group.S with type t = 'sum) ->
                'a t -> f:('-> 'sum) -> 'sum
              val find : 'a t -> f:('-> bool) -> 'a option
              val find_map : 'a t -> f:('-> 'b option) -> 'b option
              val to_list : 'a t -> 'a list
              val to_array : 'a t -> 'a array
              val min_elt : 'a t -> cmp:('-> '-> int) -> 'a option
              val max_elt : 'a t -> cmp:('-> '-> int) -> 'a option
              val invariant : 'a t -> unit
              val create : ?growth_allowed:bool -> ?size:int -> 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 first : 'a t -> 'a option
              val first_with_key : 'a t -> (Key.t * 'a) option
              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
              val sexp_of_t :
                ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
            end
          val pp : Format.formatter -> t -> unit
          val ( >=. ) : t -> t -> bool
          val ( <=. ) : t -> t -> bool
          val ( =. ) : t -> t -> bool
          val ( >. ) : t -> t -> bool
          val ( <. ) : t -> t -> bool
          val ( <>. ) : t -> t -> bool
          val robustly_compare : t -> t -> int
          val of_string : string -> t
          val to_string : t -> 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 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 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
          module Stable :
            sig
              module V1 :
                sig
                  type t = t
                  val t_of_sexp : Sexplib.Sexp.t -> t
                  val sexp_of_t : t -> Sexplib.Sexp.t
                  val compare : t -> t -> int
                  val bin_t : t Core_kernel.Std.Bin_prot.Type_class.t
                  val bin_read_t : t Core_kernel.Std.Bin_prot.Read.reader
                  val __bin_read_t__ :
                    (int -> t) Core_kernel.Std.Bin_prot.Read.reader
                  val bin_reader_t :
                    t Core_kernel.Std.Bin_prot.Type_class.reader
                  val bin_size_t : t Core_kernel.Std.Bin_prot.Size.sizer
                  val bin_write_t : t Core_kernel.Std.Bin_prot.Write.writer
                  val bin_writer_t :
                    t Core_kernel.Std.Bin_prot.Type_class.writer
                end
            end
          val t_of_sexp : Sexplib.Sexp.t -> t
          val sexp_of_t : t -> Sexplib.Sexp.t
          val bin_t : t Core_kernel.Std.Bin_prot.Type_class.t
          val bin_read_t : t Core_kernel.Std.Bin_prot.Read.reader
          val __bin_read_t__ :
            (int -> t) Core_kernel.Std.Bin_prot.Read.reader
          val bin_reader_t : t Core_kernel.Std.Bin_prot.Type_class.reader
          val bin_size_t : t Core_kernel.Std.Bin_prot.Size.sizer
          val bin_write_t : t Core_kernel.Std.Bin_prot.Write.writer
          val bin_writer_t : t Core_kernel.Std.Bin_prot.Type_class.writer
          module Zoned :
            sig
              type ofday = Ofday.t
              type t = Time.Ofday.Zoned.t
              val of_string : string -> t
              val to_string : t -> string
              val ( >= ) : t -> t -> bool
              val ( <= ) : t -> t -> bool
              val ( = ) : t -> t -> bool
              val ( > ) : t -> t -> bool
              val ( < ) : t -> t -> bool
              val ( <> ) : t -> t -> bool
              val equal : t -> t -> bool
              val compare : t -> t -> int
              val min : t -> t -> t
              val max : t -> t -> t
              val ascending : t -> t -> int
              val descending : t -> t -> int
              val between : t -> low:t -> high:t -> bool
              module Replace_polymorphic_compare :
                sig
                  val ( >= ) : t -> t -> bool
                  val ( <= ) : t -> t -> bool
                  val ( = ) : t -> t -> bool
                  val ( > ) : t -> t -> bool
                  val ( < ) : t -> t -> bool
                  val ( <> ) : t -> t -> bool
                  val equal : t -> t -> bool
                  val compare : t -> t -> int
                  val min : t -> t -> t
                  val max : t -> t -> t
                  val _squelch_unused_module_warning_ : unit
                end
              type comparator_witness = Time.Ofday.Zoned.comparator_witness
              val validate_lbound :
                min:t Core_kernel.Comparable_intf.bound ->
                t Core_kernel.Validate.check
              val validate_ubound :
                max:t Core_kernel.Comparable_intf.bound ->
                t Core_kernel.Validate.check
              val validate_bound :
                min:t Core_kernel.Comparable_intf.bound ->
                max:t Core_kernel.Comparable_intf.bound ->
                t Core_kernel.Validate.check
              val comparator :
                (t, comparator_witness) Core_kernel.Comparator.comparator
              module Map :
                sig
                  module Key :
                    sig
                      type t = t
                      type comparator_witness = comparator_witness
                      val comparator :
                        (t, comparator_witness)
                        Core_kernel.Comparator.comparator
                    end
                  module Tree :
                    sig
                      type 'a t =
                          (Key.t, 'a, Key.comparator_witness)
                          Core_kernel.Core_map.Tree.t
                      val empty : 'a t
                      val singleton : Key.t -> '-> 'a t
                      val of_alist :
                        (Key.t * 'a) list ->
                        [ `Duplicate_key of Key.t | `Ok of 'a t ]
                      val of_alist_or_error :
                        (Key.t * 'a) list -> 'a t Core_kernel.Or_error.t
                      val of_alist_exn : (Key.t * 'a) list -> 'a t
                      val of_alist_multi : (Key.t * 'a) list -> 'a list t
                      val of_alist_fold :
                        (Key.t * 'a) list ->
                        init:'-> f:('-> '-> 'b) -> 'b t
                      val of_alist_reduce :
                        (Key.t * 'a) list -> f:('-> '-> 'a) -> 'a t
                      val of_sorted_array :
                        (Key.t * 'a) array -> 'a t Core_kernel.Or_error.t
                      val of_sorted_array_unchecked :
                        (Key.t * 'a) array -> 'a t
                      val of_tree : 'a t -> 'a t
                      val invariants : 'a t -> bool
                      val is_empty : 'a t -> bool
                      val length : 'a t -> int
                      val add : 'a t -> key:Key.t -> data:'-> 'a t
                      val add_multi :
                        'a list t -> key:Key.t -> data:'-> 'a list t
                      val change :
                        'a t -> Key.t -> ('a option -> 'a option) -> 'a t
                      val find : 'a t -> Key.t -> 'a option
                      val find_exn : 'a t -> Key.t -> 'a
                      val remove : 'a t -> Key.t -> 'a t
                      val mem : 'a t -> Key.t -> bool
                      val iter :
                        'a t -> f:(key:Key.t -> data:'-> unit) -> unit
                      val iter2 :
                        'a t ->
                        'b t ->
                        f:(key:Key.t ->
                           data:[ `Both of 'a * 'b
                                | `Left of 'a
                                | `Right of 'b ] ->
                           unit) ->
                        unit
                      val map : 'a t -> f:('-> 'b) -> 'b t
                      val mapi :
                        'a t -> f:(key:Key.t -> data:'-> 'b) -> 'b t
                      val fold :
                        'a t ->
                        init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
                      val fold_right :
                        'a t ->
                        init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
                      val filter :
                        'a t -> f:(key:Key.t -> data:'-> bool) -> 'a t
                      val filter_map : 'a t -> f:('-> 'b option) -> 'b t
                      val filter_mapi :
                        'a t -> f:(key:Key.t -> data:'-> 'b option) -> 'b t
                      val compare_direct :
                        ('-> '-> int) -> 'a t -> 'a t -> int
                      val equal : ('-> '-> bool) -> 'a t -> 'a t -> bool
                      val keys : 'a t -> Key.t list
                      val data : 'a t -> 'a list
                      val to_alist : 'a t -> (Key.t * 'a) list
                      val validate :
                        name:(Key.t -> string) ->
                        'Core_kernel.Validate.check ->
                        'a t Core_kernel.Validate.check
                      val merge :
                        'a t ->
                        'b t ->
                        f:(key:Key.t ->
                           [ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                           'c option) ->
                        'c t
                      val symmetric_diff :
                        'a t ->
                        'a t ->
                        data_equal:('-> '-> bool) ->
                        (Key.t *
                         [ `Left of '| `Right of '| `Unequal of 'a * 'a ])
                        Core_kernel.Sequence.t
                      val min_elt : 'a t -> (Key.t * 'a) option
                      val min_elt_exn : 'a t -> Key.t * 'a
                      val max_elt : 'a t -> (Key.t * 'a) option
                      val max_elt_exn : 'a t -> Key.t * 'a
                      val for_all : 'a t -> f:('-> bool) -> bool
                      val exists : 'a t -> f:('-> bool) -> bool
                      val split :
                        'a t -> Key.t -> 'a t * (Key.t * 'a) option * 'a t
                      val fold_range_inclusive :
                        'a t ->
                        min:Key.t ->
                        max:Key.t ->
                        init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
                      val range_to_alist :
                        'a t -> min:Key.t -> max:Key.t -> (Key.t * 'a) list
                      val closest_key :
                        'a t ->
                        [ `Greater_or_equal_to
                        | `Greater_than
                        | `Less_or_equal_to
                        | `Less_than ] -> Key.t -> (Key.t * 'a) option
                      val nth : 'a t -> int -> (Key.t * 'a) option
                      val rank : 'a t -> Key.t -> int option
                      val to_tree : 'a t -> 'a t
                      val to_sequence :
                        ?order:[ `Decreasing_key | `Increasing_key ] ->
                        ?keys_greater_or_equal_to:Key.t ->
                        ?keys_less_or_equal_to:Key.t ->
                        'a t -> (Key.t * 'a) Core_kernel.Sequence.t
                      val t_of_sexp :
                        (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a t
                      val sexp_of_t :
                        ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
                    end
                  type 'a t =
                      (Key.t, 'a, Key.comparator_witness)
                      Core_kernel.Core_map.t
                  val empty : 'a t
                  val singleton : Key.t -> '-> 'a t
                  val of_alist :
                    (Key.t * 'a) list ->
                    [ `Duplicate_key of Key.t | `Ok of 'a t ]
                  val of_alist_or_error :
                    (Key.t * 'a) list -> 'a t Core_kernel.Or_error.t
                  val of_alist_exn : (Key.t * 'a) list -> 'a t
                  val of_alist_multi : (Key.t * 'a) list -> 'a list t
                  val of_alist_fold :
                    (Key.t * 'a) list ->
                    init:'-> f:('-> '-> 'b) -> 'b t
                  val of_alist_reduce :
                    (Key.t * 'a) list -> f:('-> '-> 'a) -> 'a t
                  val of_sorted_array :
                    (Key.t * 'a) array -> 'a t Core_kernel.Or_error.t
                  val of_sorted_array_unchecked : (Key.t * 'a) array -> 'a t
                  val of_tree : 'Tree.t -> 'a t
                  val invariants : 'a t -> bool
                  val is_empty : 'a t -> bool
                  val length : 'a t -> int
                  val add : 'a t -> key:Key.t -> data:'-> 'a t
                  val add_multi :
                    'a list t -> key:Key.t -> data:'-> 'a list t
                  val change :
                    'a t -> Key.t -> ('a option -> 'a option) -> 'a t
                  val find : 'a t -> Key.t -> 'a option
                  val find_exn : 'a t -> Key.t -> 'a
                  val remove : 'a t -> Key.t -> 'a t
                  val mem : 'a t -> Key.t -> bool
                  val iter : 'a t -> f:(key:Key.t -> data:'-> unit) -> unit
                  val iter2 :
                    'a t ->
                    'b t ->
                    f:(key:Key.t ->
                       data:[ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                       unit) ->
                    unit
                  val map : 'a t -> f:('-> 'b) -> 'b t
                  val mapi : 'a t -> f:(key:Key.t -> data:'-> 'b) -> 'b t
                  val fold :
                    'a t ->
                    init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
                  val fold_right :
                    'a t ->
                    init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
                  val filter :
                    'a t -> f:(key:Key.t -> data:'-> bool) -> 'a t
                  val filter_map : 'a t -> f:('-> 'b option) -> 'b t
                  val filter_mapi :
                    'a t -> f:(key:Key.t -> data:'-> 'b option) -> 'b t
                  val compare_direct :
                    ('-> '-> int) -> 'a t -> 'a t -> int
                  val equal : ('-> '-> bool) -> 'a t -> 'a t -> bool
                  val keys : 'a t -> Key.t list
                  val data : 'a t -> 'a list
                  val to_alist : 'a t -> (Key.t * 'a) list
                  val validate :
                    name:(Key.t -> string) ->
                    'Core_kernel.Validate.check ->
                    'a t Core_kernel.Validate.check
                  val merge :
                    'a t ->
                    'b t ->
                    f:(key:Key.t ->
                       [ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                       'c option) ->
                    'c t
                  val symmetric_diff :
                    'a t ->
                    'a t ->
                    data_equal:('-> '-> bool) ->
                    (Key.t *
                     [ `Left of '| `Right of '| `Unequal of 'a * 'a ])
                    Core_kernel.Sequence.t
                  val min_elt : 'a t -> (Key.t * 'a) option
                  val min_elt_exn : 'a t -> Key.t * 'a
                  val max_elt : 'a t -> (Key.t * 'a) option
                  val max_elt_exn : 'a t -> Key.t * 'a
                  val for_all : 'a t -> f:('-> bool) -> bool
                  val exists : 'a t -> f:('-> bool) -> bool
                  val split :
                    'a t -> Key.t -> 'a t * (Key.t * 'a) option * 'a t
                  val fold_range_inclusive :
                    'a t ->
                    min:Key.t ->
                    max:Key.t ->
                    init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
                  val range_to_alist :
                    'a t -> min:Key.t -> max:Key.t -> (Key.t * 'a) list
                  val closest_key :
                    'a t ->
                    [ `Greater_or_equal_to
                    | `Greater_than
                    | `Less_or_equal_to
                    | `Less_than ] -> Key.t -> (Key.t * 'a) option
                  val nth : 'a t -> int -> (Key.t * 'a) option
                  val rank : 'a t -> Key.t -> int option
                  val to_tree : 'a t -> 'Tree.t
                  val to_sequence :
                    ?order:[ `Decreasing_key | `Increasing_key ] ->
                    ?keys_greater_or_equal_to:Key.t ->
                    ?keys_less_or_equal_to:Key.t ->
                    'a t -> (Key.t * 'a) Core_kernel.Sequence.t
                  val t_of_sexp :
                    (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a t
                  val sexp_of_t :
                    ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
                  val compare : ('-> '-> int) -> 'a t -> 'a t -> int
                  val bin_size_t : ('a, 'a t) Bin_prot.Size.sizer1
                  val bin_write_t : ('a, 'a t) Bin_prot.Write.writer1
                  val bin_read_t : ('a, 'a t) Bin_prot.Read.reader1
                  val __bin_read_t__ :
                    ('a, int -> 'a t) Bin_prot.Read.reader1
                  val bin_writer_t : ('a, 'a t) Bin_prot.Type_class.S1.writer
                  val bin_reader_t : ('a, 'a t) Bin_prot.Type_class.S1.reader
                  val bin_t : ('a, 'a t) Bin_prot.Type_class.S1.t
                end
              module Set :
                sig
                  module Elt :
                    sig
                      type t = t
                      type comparator_witness = comparator_witness
                      val comparator :
                        (t, comparator_witness)
                        Core_kernel.Comparator.comparator
                      val t_of_sexp : Sexplib.Sexp.t -> t
                      val sexp_of_t : t -> Sexplib.Sexp.t
                    end
                  module Tree :
                    sig
                      type t =
                          (Elt.t, Elt.comparator_witness)
                          Core_kernel.Core_set.Tree.t
                      val length : t -> int
                      val is_empty : t -> bool
                      val iter : t -> f:(Elt.t -> unit) -> unit
                      val fold :
                        t ->
                        init:'accum ->
                        f:('accum -> Elt.t -> 'accum) -> 'accum
                      val exists : t -> f:(Elt.t -> bool) -> bool
                      val for_all : t -> f:(Elt.t -> bool) -> bool
                      val count : t -> f:(Elt.t -> bool) -> int
                      val sum :
                        (module Core_kernel.Commutative_group.S with type t = 'sum) ->
                        t -> f:(Elt.t -> 'sum) -> 'sum
                      val find : t -> f:(Elt.t -> bool) -> Elt.t option
                      val find_map : t -> f:(Elt.t -> 'a option) -> 'a option
                      val to_list : t -> Elt.t list
                      val to_array : t -> Elt.t array
                      val invariants : t -> bool
                      val mem : t -> Elt.t -> bool
                      val add : t -> Elt.t -> t
                      val remove : t -> Elt.t -> t
                      val union : t -> t -> t
                      val inter : t -> t -> t
                      val diff : t -> t -> t
                      val symmetric_diff :
                        t ->
                        t ->
                        (Elt.t, Elt.t) Core_kernel.Either.t
                        Core_kernel.Sequence.t
                      val compare_direct : t -> t -> int
                      val equal : t -> t -> bool
                      val subset : t -> t -> bool
                      val fold_until :
                        t ->
                        init:'->
                        f:('-> Elt.t -> [ `Continue of '| `Stop of 'b ]) ->
                        'b
                      val fold_right :
                        t -> init:'-> f:(Elt.t -> '-> 'b) -> 'b
                      val iter2 :
                        t ->
                        t ->
                        f:([ `Both of Elt.t * Elt.t
                           | `Left of Elt.t
                           | `Right of Elt.t ] -> unit) ->
                        unit
                      val filter : t -> f:(Elt.t -> bool) -> t
                      val partition_tf : t -> f:(Elt.t -> bool) -> t * t
                      val elements : t -> Elt.t list
                      val min_elt : t -> Elt.t option
                      val min_elt_exn : t -> Elt.t
                      val max_elt : t -> Elt.t option
                      val max_elt_exn : t -> Elt.t
                      val choose : t -> Elt.t option
                      val choose_exn : t -> Elt.t
                      val split : t -> Elt.t -> t * Elt.t option * t
                      val group_by :
                        t -> equiv:(Elt.t -> Elt.t -> bool) -> t list
                      val find_exn : t -> f:(Elt.t -> bool) -> Elt.t
                      val find_index : t -> int -> Elt.t option
                      val remove_index : t -> int -> t
                      val to_tree : t -> t
                      val to_sequence :
                        ?order:[ `Decreasing | `Increasing ] ->
                        ?greater_or_equal_to:Elt.t ->
                        ?less_or_equal_to:Elt.t ->
                        t -> Elt.t Core_kernel.Sequence.t
                      val to_map :
                        t ->
                        f:(Elt.t -> 'data) ->
                        (Elt.t, 'data, Elt.comparator_witness)
                        Core_kernel.Core_set_intf.Map.t
                      val empty : t
                      val singleton : Elt.t -> t
                      val union_list : t list -> t
                      val of_list : Elt.t list -> t
                      val of_array : Elt.t array -> t
                      val of_sorted_array :
                        Elt.t array -> t Core_kernel.Or_error.t
                      val of_sorted_array_unchecked : Elt.t array -> t
                      val stable_dedup_list : Elt.t list -> Elt.t list
                      val map :
                        ('a, 'b) Core_kernel.Core_set.Tree.t ->
                        f:('-> Elt.t) -> t
                      val filter_map :
                        ('a, 'b) Core_kernel.Core_set.Tree.t ->
                        f:('-> Elt.t option) -> t
                      val of_tree : t -> t
                      val of_map_keys :
                        (Elt.t, 'a, Elt.comparator_witness)
                        Core_kernel.Core_set_intf.Map.t -> t
                      val t_of_sexp : Sexplib.Sexp.t -> t
                      val sexp_of_t : t -> Sexplib.Sexp.t
                      val compare : t -> t -> int
                    end
                  type t =
                      (Elt.t, Elt.comparator_witness) Core_kernel.Core_set.t
                  val length : t -> int
                  val is_empty : t -> bool
                  val iter : t -> f:(Elt.t -> unit) -> unit
                  val fold :
                    t ->
                    init:'accum -> f:('accum -> Elt.t -> 'accum) -> 'accum
                  val exists : t -> f:(Elt.t -> bool) -> bool
                  val for_all : t -> f:(Elt.t -> bool) -> bool
                  val count : t -> f:(Elt.t -> bool) -> int
                  val sum :
                    (module Core_kernel.Commutative_group.S with type t = 'sum) ->
                    t -> f:(Elt.t -> 'sum) -> 'sum
                  val find : t -> f:(Elt.t -> bool) -> Elt.t option
                  val find_map : t -> f:(Elt.t -> 'a option) -> 'a option
                  val to_list : t -> Elt.t list
                  val to_array : t -> Elt.t array
                  val invariants : t -> bool
                  val mem : t -> Elt.t -> bool
                  val add : t -> Elt.t -> t
                  val remove : t -> Elt.t -> t
                  val union : t -> t -> t
                  val inter : t -> t -> t
                  val diff : t -> t -> t
                  val symmetric_diff :
                    t ->
                    t ->
                    (Elt.t, Elt.t) Core_kernel.Either.t
                    Core_kernel.Sequence.t
                  val compare_direct : t -> t -> int
                  val equal : t -> t -> bool
                  val subset : t -> t -> bool
                  val fold_until :
                    t ->
                    init:'->
                    f:('-> Elt.t -> [ `Continue of '| `Stop of 'b ]) ->
                    'b
                  val fold_right :
                    t -> init:'-> f:(Elt.t -> '-> 'b) -> 'b
                  val iter2 :
                    t ->
                    t ->
                    f:([ `Both of Elt.t * Elt.t
                       | `Left of Elt.t
                       | `Right of Elt.t ] -> unit) ->
                    unit
                  val filter : t -> f:(Elt.t -> bool) -> t
                  val partition_tf : t -> f:(Elt.t -> bool) -> t * t
                  val elements : t -> Elt.t list
                  val min_elt : t -> Elt.t option
                  val min_elt_exn : t -> Elt.t
                  val max_elt : t -> Elt.t option
                  val max_elt_exn : t -> Elt.t
                  val choose : t -> Elt.t option
                  val choose_exn : t -> Elt.t
                  val split : t -> Elt.t -> t * Elt.t option * t
                  val group_by :
                    t -> equiv:(Elt.t -> Elt.t -> bool) -> t list
                  val find_exn : t -> f:(Elt.t -> bool) -> Elt.t
                  val find_index : t -> int -> Elt.t option
                  val remove_index : t -> int -> t
                  val to_tree : t -> Tree.t
                  val to_sequence :
                    ?order:[ `Decreasing | `Increasing ] ->
                    ?greater_or_equal_to:Elt.t ->
                    ?less_or_equal_to:Elt.t ->
                    t -> Elt.t Core_kernel.Sequence.t
                  val to_map :
                    t ->
                    f:(Elt.t -> 'data) ->
                    (Elt.t, 'data, Elt.comparator_witness)
                    Core_kernel.Core_set_intf.Map.t
                  val empty : t
                  val singleton : Elt.t -> t
                  val union_list : t list -> t
                  val of_list : Elt.t list -> t
                  val of_array : Elt.t array -> t
                  val of_sorted_array :
                    Elt.t array -> t Core_kernel.Or_error.t
                  val of_sorted_array_unchecked : Elt.t array -> t
                  val stable_dedup_list : Elt.t list -> Elt.t list
                  val map :
                    ('a, 'b) Core_kernel.Core_set.t -> f:('-> Elt.t) -> t
                  val filter_map :
                    ('a, 'b) Core_kernel.Core_set.t ->
                    f:('-> Elt.t option) -> t
                  val of_tree : Tree.t -> t
                  val of_map_keys :
                    (Elt.t, 'a, Elt.comparator_witness)
                    Core_kernel.Core_set_intf.Map.t -> t
                  val t_of_sexp : Sexplib.Sexp.t -> t
                  val sexp_of_t : t -> Sexplib.Sexp.t
                  val compare : t -> t -> int
                  val bin_size_t : t Bin_prot.Size.sizer
                  val bin_write_t : t Bin_prot.Write.writer
                  val bin_read_t : t Bin_prot.Read.reader
                  val __bin_read_t__ : (int -> t) Bin_prot.Read.reader
                  val bin_writer_t : t Bin_prot.Type_class.writer
                  val bin_reader_t : t Bin_prot.Type_class.reader
                  val bin_t : t Bin_prot.Type_class.t
                end
              val hash : t -> int
              val hashable : t Core_kernel.Hashable.Hashtbl.Hashable.t
              module Table :
                sig
                  type key = t
                  type ('a, 'b) hashtbl =
                      ('a, 'b) Core_kernel.Hashable.Hashtbl.t
                  type 'b t = (key, 'b) hashtbl
                  type ('a, 'b) t_ = 'b t
                  type 'a key_ = key
                  val hashable : key Core_kernel.Core_hashtbl_intf.Hashable.t
                  val create :
                    ('a key_, 'b, unit -> ('a, 'b) t_)
                    Core_kernel.Core_hashtbl_intf.create_options_without_hashable
                  val of_alist :
                    ('a key_, 'b,
                     ('a key_ * 'b) list ->
                     [ `Duplicate_key of 'a key_ | `Ok of ('a, 'b) t_ ])
                    Core_kernel.Core_hashtbl_intf.create_options_without_hashable
                  val of_alist_report_all_dups :
                    ('a key_, 'b,
                     ('a key_ * 'b) list ->
                     [ `Duplicate_keys of 'a key_ list | `Ok of ('a, 'b) t_ ])
                    Core_kernel.Core_hashtbl_intf.create_options_without_hashable
                  val of_alist_or_error :
                    ('a key_, 'b,
                     ('a key_ * 'b) list ->
                     ('a, 'b) t_ Core_kernel.Or_error.t)
                    Core_kernel.Core_hashtbl_intf.create_options_without_hashable
                  val of_alist_exn :
                    ('a key_, 'b, ('a key_ * 'b) list -> ('a, 'b) t_)
                    Core_kernel.Core_hashtbl_intf.create_options_without_hashable
                  val of_alist_multi :
                    ('a key_, 'b list,
                     ('a key_ * 'b) list -> ('a, 'b list) t_)
                    Core_kernel.Core_hashtbl_intf.create_options_without_hashable
                  val create_mapped :
                    ('a key_, 'b,
                     get_key:('-> 'a key_) ->
                     get_data:('-> 'b) ->
                     'r list ->
                     [ `Duplicate_keys of 'a key_ list | `Ok of ('a, 'b) t_ ])
                    Core_kernel.Core_hashtbl_intf.create_options_without_hashable
                  val create_with_key :
                    ('a key_, 'r,
                     get_key:('-> 'a key_) ->
                     'r list ->
                     [ `Duplicate_keys of 'a key_ list | `Ok of ('a, 'r) t_ ])
                    Core_kernel.Core_hashtbl_intf.create_options_without_hashable
                  val create_with_key_or_error :
                    ('a key_, 'r,
                     get_key:('-> 'a key_) ->
                     'r list -> ('a, 'r) t_ Core_kernel.Or_error.t)
                    Core_kernel.Core_hashtbl_intf.create_options_without_hashable
                  val create_with_key_exn :
                    ('a key_, 'r,
                     get_key:('-> 'a key_) -> 'r list -> ('a, 'r) t_)
                    Core_kernel.Core_hashtbl_intf.create_options_without_hashable
                  val group :
                    ('a key_, 'b,
                     get_key:('-> 'a key_) ->
                     get_data:('-> 'b) ->
                     combine:('-> '-> 'b) -> 'r list -> ('a, 'b) t_)
                    Core_kernel.Core_hashtbl_intf.create_options_without_hashable
                  val sexp_of_key : ('a, 'b) t_ -> 'a key_ -> Sexplib.Sexp.t
                  val clear : ('a, 'b) t_ -> unit
                  val copy : ('a, 'b) t_ -> ('a, 'b) t_
                  val invariant : ('a, 'b) t_ -> unit
                  val fold :
                    ('a, 'b) t_ ->
                    init:'-> f:(key:'a key_ -> data:'-> '-> 'c) -> 'c
                  val iter :
                    ('a, 'b) t_ -> f:(key:'a key_ -> data:'-> unit) -> unit
                  val existsi :
                    ('a, 'b) t_ -> f:(key:'a key_ -> data:'-> bool) -> bool
                  val exists : ('a, 'b) t_ -> f:('-> bool) -> bool
                  val for_alli :
                    ('a, 'b) t_ -> f:(key:'a key_ -> data:'-> bool) -> bool
                  val for_all : ('a, 'b) t_ -> f:('-> bool) -> bool
                  val length : ('a, 'b) t_ -> int
                  val is_empty : ('a, 'b) t_ -> bool
                  val mem : ('a, 'b) t_ -> 'a key_ -> bool
                  val remove : ('a, 'b) t_ -> 'a key_ -> unit
                  val remove_one : ('a, 'b list) t_ -> 'a key_ -> unit
                  val replace : ('a, 'b) t_ -> key:'a key_ -> data:'-> unit
                  val set : ('a, 'b) t_ -> key:'a key_ -> data:'-> unit
                  val add :
                    ('a, 'b) t_ ->
                    key:'a key_ -> data:'-> [ `Duplicate | `Ok ]
                  val add_or_error :
                    ('a, 'b) t_ ->
                    key:'a key_ -> data:'-> unit Core_kernel.Or_error.t
                  val add_exn : ('a, 'b) t_ -> key:'a key_ -> data:'-> unit
                  val change :
                    ('a, 'b) t_ ->
                    'a key_ -> ('b option -> 'b option) -> unit
                  val add_multi :
                    ('a, 'b list) t_ -> key:'a key_ -> data:'-> unit
                  val remove_multi : ('a, 'b list) t_ -> 'a key_ -> unit
                  val map :
                    ('c, ('a, 'b) t_ -> f:('-> 'c) -> ('a, 'c) t_)
                    Core_kernel.Core_hashtbl_intf.no_map_options
                  val mapi :
                    ('c,
                     ('a, 'b) t_ ->
                     f:(key:'a key_ -> data:'-> 'c) -> ('a, 'c) t_)
                    Core_kernel.Core_hashtbl_intf.no_map_options
                  val filter_map :
                    ('c, ('a, 'b) t_ -> f:('-> 'c option) -> ('a, 'c) t_)
                    Core_kernel.Core_hashtbl_intf.no_map_options
                  val filter_mapi :
                    ('c,
                     ('a, 'b) t_ ->
                     f:(key:'a key_ -> data:'-> 'c option) -> ('a, 'c) t_)
                    Core_kernel.Core_hashtbl_intf.no_map_options
                  val filter : ('a, 'b) t_ -> f:('-> bool) -> ('a, 'b) t_
                  val filteri :
                    ('a, 'b) t_ ->
                    f:(key:'a key_ -> data:'-> bool) -> ('a, 'b) t_
                  val partition_map :
                    ('c,
                     ('d,
                      ('a, 'b) t_ ->
                      f:('-> [ `Fst of '| `Snd of 'd ]) ->
                      ('a, 'c) t_ * ('a, 'd) t_)
                     Core_kernel.Core_hashtbl_intf.no_map_options)
                    Core_kernel.Core_hashtbl_intf.no_map_options
                  val partition_mapi :
                    ('c,
                     ('d,
                      ('a, 'b) t_ ->
                      f:(key:'a key_ ->
                         data:'-> [ `Fst of '| `Snd of 'd ]) ->
                      ('a, 'c) t_ * ('a, 'd) t_)
                     Core_kernel.Core_hashtbl_intf.no_map_options)
                    Core_kernel.Core_hashtbl_intf.no_map_options
                  val partition_tf :
                    ('a, 'b) t_ ->
                    f:('-> bool) -> ('a, 'b) t_ * ('a, 'b) t_
                  val partitioni_tf :
                    ('a, 'b) t_ ->
                    f:(key:'a key_ -> data:'-> bool) ->
                    ('a, 'b) t_ * ('a, 'b) t_
                  val find_or_add :
                    ('a, 'b) t_ -> 'a key_ -> default:(unit -> 'b) -> 'b
                  val find : ('a, 'b) t_ -> 'a key_ -> 'b option
                  val find_exn : ('a, 'b) t_ -> 'a key_ -> 'b
                  val find_and_call :
                    ('a, 'b) t_ ->
                    'a key_ ->
                    if_found:('-> 'c) -> if_not_found:('a key_ -> 'c) -> 'c
                  val find_and_remove : ('a, 'b) t_ -> 'a key_ -> 'b option
                  val iter_vals : ('a, 'b) t_ -> f:('-> unit) -> unit
                  val merge :
                    ('c,
                     ('k, 'a) t_ ->
                     ('k, 'b) t_ ->
                     f:(key:'k key_ ->
                        [ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                        'c option) ->
                     ('k, 'c) t_)
                    Core_kernel.Core_hashtbl_intf.no_map_options
                  val merge_into :
                    f:(key:'a key_ -> '-> 'c option -> 'c option) ->
                    src:('a, 'b) t_ -> dst:('a, 'c) t_ -> unit
                  val keys : ('a, 'b) t_ -> 'a key_ list
                  val data : ('a, 'b) t_ -> 'b list
                  val filter_inplace : ('a, 'b) t_ -> f:('-> bool) -> unit
                  val filteri_inplace :
                    ('a, 'b) t_ -> f:('a key_ -> '-> bool) -> unit
                  val equal :
                    ('a, 'b) t_ -> ('a, 'b) t_ -> ('-> '-> bool) -> bool
                  val similar :
                    ('a, 'b1) t_ ->
                    ('a, 'b2) t_ -> ('b1 -> 'b2 -> bool) -> bool
                  val to_alist : ('a, 'b) t_ -> ('a key_ * 'b) list
                  val validate :
                    name:('a key_ -> string) ->
                    'Core_kernel.Validate.check ->
                    ('a, 'b) t_ Core_kernel.Validate.check
                  val incr : ?by:int -> ('a, int) t_ -> 'a key_ -> unit
                  val t_of_sexp :
                    (Sexplib.Sexp.t -> 'b) -> Sexplib.Sexp.t -> 'b t
                  val sexp_of_t :
                    ('-> Sexplib.Sexp.t) -> 'b t -> Sexplib.Sexp.t
                  val bin_size_t : ('a, 'a t) Bin_prot.Size.sizer1
                  val bin_write_t : ('a, 'a t) Bin_prot.Write.writer1
                  val bin_read_t : ('a, 'a t) Bin_prot.Read.reader1
                  val __bin_read_t__ :
                    ('a, int -> 'a t) Bin_prot.Read.reader1
                  val bin_writer_t : ('a, 'a t) Bin_prot.Type_class.S1.writer
                  val bin_reader_t : ('a, 'a t) Bin_prot.Type_class.S1.reader
                  val bin_t : ('a, 'a t) Bin_prot.Type_class.S1.t
                end
              module Hash_set :
                sig
                  type elt = t
                  type 'a hash_set = 'Core_kernel.Hash_set.t
                  type t = elt hash_set
                  type 'a t_ = t
                  type 'a elt_ = elt
                  val create :
                    ('a, unit -> 'a t_)
                    Core_kernel.Hash_set_intf.create_options_without_hashable
                  val of_list :
                    ('a, 'a elt_ list -> 'a t_)
                    Core_kernel.Hash_set_intf.create_options_without_hashable
                  val t_of_sexp : Sexplib.Sexp.t -> t
                  val sexp_of_t : t -> Sexplib.Sexp.t
                  val bin_size_t : t Bin_prot.Size.sizer
                  val bin_write_t : t Bin_prot.Write.writer
                  val bin_read_t : t Bin_prot.Read.reader
                  val __bin_read_t__ : (int -> t) Bin_prot.Read.reader
                  val bin_writer_t : t Bin_prot.Type_class.writer
                  val bin_reader_t : t Bin_prot.Type_class.reader
                  val bin_t : t Bin_prot.Type_class.t
                end
              module Hash_queue :
                sig
                  module Key :
                    sig
                      type t = t
                      val hash : t -> int
                      val t_of_sexp : Sexplib.Sexp.t -> t
                      val sexp_of_t : t -> Sexplib.Sexp.t
                      val compare : t -> t -> int
                    end
                  type 'a t = 'Time.Ofday.Zoned.Hash_queue.t
                  val length : 'a t -> int
                  val is_empty : 'a t -> bool
                  val iter : 'a t -> f:('-> unit) -> unit
                  val fold :
                    'a t ->
                    init:'accum -> f:('accum -> '-> 'accum) -> 'accum
                  val exists : 'a t -> f:('-> bool) -> bool
                  val for_all : 'a t -> f:('-> bool) -> bool
                  val count : 'a t -> f:('-> bool) -> int
                  val sum :
                    (module Core_kernel.Commutative_group.S with type t = 'sum) ->
                    'a t -> f:('-> 'sum) -> 'sum
                  val find : 'a t -> f:('-> bool) -> 'a option
                  val find_map : 'a t -> f:('-> 'b option) -> 'b option
                  val to_list : 'a t -> 'a list
                  val to_array : 'a t -> 'a array
                  val min_elt : 'a t -> cmp:('-> '-> int) -> 'a option
                  val max_elt : 'a t -> cmp:('-> '-> int) -> 'a option
                  val invariant : 'a t -> unit
                  val create :
                    ?growth_allowed:bool -> ?size:int -> 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 first : 'a t -> 'a option
                  val first_with_key : 'a t -> (Key.t * 'a) option
                  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
                  val sexp_of_t :
                    ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
                end
              val pp : Format.formatter -> t -> unit
              val create : ofday -> Zone.t -> t
              val create_local : ofday -> t
              val ofday : t -> ofday
              val zone : t -> Zone.t
              module Stable :
                sig
                  module V1 :
                    sig
                      type t = t
                      val bin_t : t Core_kernel.Std.Bin_prot.Type_class.t
                      val bin_read_t : t Core_kernel.Std.Bin_prot.Read.reader
                      val __bin_read_t__ :
                        (int -> t) Core_kernel.Std.Bin_prot.Read.reader
                      val bin_reader_t :
                        t Core_kernel.Std.Bin_prot.Type_class.reader
                      val bin_size_t : t Core_kernel.Std.Bin_prot.Size.sizer
                      val bin_write_t :
                        t Core_kernel.Std.Bin_prot.Write.writer
                      val bin_writer_t :
                        t Core_kernel.Std.Bin_prot.Type_class.writer
                      val t_of_sexp : Sexplib.Sexp.t -> t
                      val sexp_of_t : t -> Sexplib.Sexp.t
                    end
                end
              val t_of_sexp : Sexplib.Sexp.t -> t
              val sexp_of_t : t -> Sexplib.Sexp.t
              val bin_t : t Core_kernel.Std.Bin_prot.Type_class.t
              val bin_read_t : t Core_kernel.Std.Bin_prot.Read.reader
              val __bin_read_t__ :
                (int -> t) Core_kernel.Std.Bin_prot.Read.reader
              val bin_reader_t : t Core_kernel.Std.Bin_prot.Type_class.reader
              val bin_size_t : t Core_kernel.Std.Bin_prot.Size.sizer
              val bin_write_t : t Core_kernel.Std.Bin_prot.Write.writer
              val bin_writer_t : t Core_kernel.Std.Bin_prot.Type_class.writer
              val to_time : t -> Date0.t -> Time_internal.T.t
            end
          val now : zone:Zone.t -> t
        end
      module Span :
        sig
          type t = Span.t
          val ( >= ) : t -> t -> bool
          val ( <= ) : t -> t -> bool
          val ( = ) : t -> t -> bool
          val ( > ) : t -> t -> bool
          val ( < ) : t -> t -> bool
          val ( <> ) : t -> t -> bool
          val equal : t -> t -> bool
          val compare : t -> t -> int
          val min : t -> t -> t
          val max : t -> t -> t
          val ascending : t -> t -> int
          val descending : t -> t -> int
          val between : t -> low:t -> high:t -> bool
          module Replace_polymorphic_compare :
            sig
              val ( >= ) : t -> t -> bool
              val ( <= ) : t -> t -> bool
              val ( = ) : t -> t -> bool
              val ( > ) : t -> t -> bool
              val ( < ) : t -> t -> bool
              val ( <> ) : t -> t -> bool
              val equal : t -> t -> bool
              val compare : t -> t -> int
              val min : t -> t -> t
              val max : t -> t -> t
              val _squelch_unused_module_warning_ : unit
            end
          type comparator_witness = Time.Span.comparator_witness
          val validate_lbound :
            min:t Core_kernel.Comparable_intf.bound ->
            t Core_kernel.Validate.check
          val validate_ubound :
            max:t Core_kernel.Comparable_intf.bound ->
            t Core_kernel.Validate.check
          val validate_bound :
            min:t Core_kernel.Comparable_intf.bound ->
            max:t Core_kernel.Comparable_intf.bound ->
            t Core_kernel.Validate.check
          val comparator :
            (t, comparator_witness) Core_kernel.Comparator.comparator
          module Map :
            sig
              module Key :
                sig
                  type t = t
                  type comparator_witness = comparator_witness
                  val comparator :
                    (t, comparator_witness) Core_kernel.Comparator.comparator
                end
              module Tree :
                sig
                  type 'a t =
                      (Key.t, 'a, Key.comparator_witness)
                      Core_kernel.Core_map.Tree.t
                  val empty : 'a t
                  val singleton : Key.t -> '-> 'a t
                  val of_alist :
                    (Key.t * 'a) list ->
                    [ `Duplicate_key of Key.t | `Ok of 'a t ]
                  val of_alist_or_error :
                    (Key.t * 'a) list -> 'a t Core_kernel.Or_error.t
                  val of_alist_exn : (Key.t * 'a) list -> 'a t
                  val of_alist_multi : (Key.t * 'a) list -> 'a list t
                  val of_alist_fold :
                    (Key.t * 'a) list ->
                    init:'-> f:('-> '-> 'b) -> 'b t
                  val of_alist_reduce :
                    (Key.t * 'a) list -> f:('-> '-> 'a) -> 'a t
                  val of_sorted_array :
                    (Key.t * 'a) array -> 'a t Core_kernel.Or_error.t
                  val of_sorted_array_unchecked : (Key.t * 'a) array -> 'a t
                  val of_tree : 'a t -> 'a t
                  val invariants : 'a t -> bool
                  val is_empty : 'a t -> bool
                  val length : 'a t -> int
                  val add : 'a t -> key:Key.t -> data:'-> 'a t
                  val add_multi :
                    'a list t -> key:Key.t -> data:'-> 'a list t
                  val change :
                    'a t -> Key.t -> ('a option -> 'a option) -> 'a t
                  val find : 'a t -> Key.t -> 'a option
                  val find_exn : 'a t -> Key.t -> 'a
                  val remove : 'a t -> Key.t -> 'a t
                  val mem : 'a t -> Key.t -> bool
                  val iter : 'a t -> f:(key:Key.t -> data:'-> unit) -> unit
                  val iter2 :
                    'a t ->
                    'b t ->
                    f:(key:Key.t ->
                       data:[ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                       unit) ->
                    unit
                  val map : 'a t -> f:('-> 'b) -> 'b t
                  val mapi : 'a t -> f:(key:Key.t -> data:'-> 'b) -> 'b t
                  val fold :
                    'a t ->
                    init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
                  val fold_right :
                    'a t ->
                    init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
                  val filter :
                    'a t -> f:(key:Key.t -> data:'-> bool) -> 'a t
                  val filter_map : 'a t -> f:('-> 'b option) -> 'b t
                  val filter_mapi :
                    'a t -> f:(key:Key.t -> data:'-> 'b option) -> 'b t
                  val compare_direct :
                    ('-> '-> int) -> 'a t -> 'a t -> int
                  val equal : ('-> '-> bool) -> 'a t -> 'a t -> bool
                  val keys : 'a t -> Key.t list
                  val data : 'a t -> 'a list
                  val to_alist : 'a t -> (Key.t * 'a) list
                  val validate :
                    name:(Key.t -> string) ->
                    'Core_kernel.Validate.check ->
                    'a t Core_kernel.Validate.check
                  val merge :
                    'a t ->
                    'b t ->
                    f:(key:Key.t ->
                       [ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                       'c option) ->
                    'c t
                  val symmetric_diff :
                    'a t ->
                    'a t ->
                    data_equal:('-> '-> bool) ->
                    (Key.t *
                     [ `Left of '| `Right of '| `Unequal of 'a * 'a ])
                    Core_kernel.Sequence.t
                  val min_elt : 'a t -> (Key.t * 'a) option
                  val min_elt_exn : 'a t -> Key.t * 'a
                  val max_elt : 'a t -> (Key.t * 'a) option
                  val max_elt_exn : 'a t -> Key.t * 'a
                  val for_all : 'a t -> f:('-> bool) -> bool
                  val exists : 'a t -> f:('-> bool) -> bool
                  val split :
                    'a t -> Key.t -> 'a t * (Key.t * 'a) option * 'a t
                  val fold_range_inclusive :
                    'a t ->
                    min:Key.t ->
                    max:Key.t ->
                    init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
                  val range_to_alist :
                    'a t -> min:Key.t -> max:Key.t -> (Key.t * 'a) list
                  val closest_key :
                    'a t ->
                    [ `Greater_or_equal_to
                    | `Greater_than
                    | `Less_or_equal_to
                    | `Less_than ] -> Key.t -> (Key.t * 'a) option
                  val nth : 'a t -> int -> (Key.t * 'a) option
                  val rank : 'a t -> Key.t -> int option
                  val to_tree : 'a t -> 'a t
                  val to_sequence :
                    ?order:[ `Decreasing_key | `Increasing_key ] ->
                    ?keys_greater_or_equal_to:Key.t ->
                    ?keys_less_or_equal_to:Key.t ->
                    'a t -> (Key.t * 'a) Core_kernel.Sequence.t
                  val t_of_sexp :
                    (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a t
                  val sexp_of_t :
                    ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
                end
              type 'a t =
                  (Key.t, 'a, Key.comparator_witness) Core_kernel.Core_map.t
              val empty : 'a t
              val singleton : Key.t -> '-> 'a t
              val of_alist :
                (Key.t * 'a) list ->
                [ `Duplicate_key of Key.t | `Ok of 'a t ]
              val of_alist_or_error :
                (Key.t * 'a) list -> 'a t Core_kernel.Or_error.t
              val of_alist_exn : (Key.t * 'a) list -> 'a t
              val of_alist_multi : (Key.t * 'a) list -> 'a list t
              val of_alist_fold :
                (Key.t * 'a) list -> init:'-> f:('-> '-> 'b) -> 'b t
              val of_alist_reduce :
                (Key.t * 'a) list -> f:('-> '-> 'a) -> 'a t
              val of_sorted_array :
                (Key.t * 'a) array -> 'a t Core_kernel.Or_error.t
              val of_sorted_array_unchecked : (Key.t * 'a) array -> 'a t
              val of_tree : 'Tree.t -> 'a t
              val invariants : 'a t -> bool
              val is_empty : 'a t -> bool
              val length : 'a t -> int
              val add : 'a t -> key:Key.t -> data:'-> 'a t
              val add_multi : 'a list t -> key:Key.t -> data:'-> 'a list t
              val change : 'a t -> Key.t -> ('a option -> 'a option) -> 'a t
              val find : 'a t -> Key.t -> 'a option
              val find_exn : 'a t -> Key.t -> 'a
              val remove : 'a t -> Key.t -> 'a t
              val mem : 'a t -> Key.t -> bool
              val iter : 'a t -> f:(key:Key.t -> data:'-> unit) -> unit
              val iter2 :
                'a t ->
                'b t ->
                f:(key:Key.t ->
                   data:[ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                   unit) ->
                unit
              val map : 'a t -> f:('-> 'b) -> 'b t
              val mapi : 'a t -> f:(key:Key.t -> data:'-> 'b) -> 'b t
              val fold :
                'a t -> init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
              val fold_right :
                'a t -> init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
              val filter : 'a t -> f:(key:Key.t -> data:'-> bool) -> 'a t
              val filter_map : 'a t -> f:('-> 'b option) -> 'b t
              val filter_mapi :
                'a t -> f:(key:Key.t -> data:'-> 'b option) -> 'b t
              val compare_direct : ('-> '-> int) -> 'a t -> 'a t -> int
              val equal : ('-> '-> bool) -> 'a t -> 'a t -> bool
              val keys : 'a t -> Key.t list
              val data : 'a t -> 'a list
              val to_alist : 'a t -> (Key.t * 'a) list
              val validate :
                name:(Key.t -> string) ->
                'Core_kernel.Validate.check ->
                'a t Core_kernel.Validate.check
              val merge :
                'a t ->
                'b t ->
                f:(key:Key.t ->
                   [ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                   'c option) ->
                'c t
              val symmetric_diff :
                'a t ->
                'a t ->
                data_equal:('-> '-> bool) ->
                (Key.t * [ `Left of '| `Right of '| `Unequal of 'a * 'a ])
                Core_kernel.Sequence.t
              val min_elt : 'a t -> (Key.t * 'a) option
              val min_elt_exn : 'a t -> Key.t * 'a
              val max_elt : 'a t -> (Key.t * 'a) option
              val max_elt_exn : 'a t -> Key.t * 'a
              val for_all : 'a t -> f:('-> bool) -> bool
              val exists : 'a t -> f:('-> bool) -> bool
              val split : 'a t -> Key.t -> 'a t * (Key.t * 'a) option * 'a t
              val fold_range_inclusive :
                'a t ->
                min:Key.t ->
                max:Key.t ->
                init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
              val range_to_alist :
                'a t -> min:Key.t -> max:Key.t -> (Key.t * 'a) list
              val closest_key :
                'a t ->
                [ `Greater_or_equal_to
                | `Greater_than
                | `Less_or_equal_to
                | `Less_than ] -> Key.t -> (Key.t * 'a) option
              val nth : 'a t -> int -> (Key.t * 'a) option
              val rank : 'a t -> Key.t -> int option
              val to_tree : 'a t -> 'Tree.t
              val to_sequence :
                ?order:[ `Decreasing_key | `Increasing_key ] ->
                ?keys_greater_or_equal_to:Key.t ->
                ?keys_less_or_equal_to:Key.t ->
                'a t -> (Key.t * 'a) Core_kernel.Sequence.t
              val t_of_sexp :
                (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a t
              val sexp_of_t :
                ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
              val compare : ('-> '-> int) -> 'a t -> 'a t -> int
              val bin_size_t : ('a, 'a t) Bin_prot.Size.sizer1
              val bin_write_t : ('a, 'a t) Bin_prot.Write.writer1
              val bin_read_t : ('a, 'a t) Bin_prot.Read.reader1
              val __bin_read_t__ : ('a, int -> 'a t) Bin_prot.Read.reader1
              val bin_writer_t : ('a, 'a t) Bin_prot.Type_class.S1.writer
              val bin_reader_t : ('a, 'a t) Bin_prot.Type_class.S1.reader
              val bin_t : ('a, 'a t) Bin_prot.Type_class.S1.t
            end
          module Set :
            sig
              module Elt :
                sig
                  type t = t
                  type comparator_witness = comparator_witness
                  val comparator :
                    (t, comparator_witness) Core_kernel.Comparator.comparator
                  val t_of_sexp : Sexplib.Sexp.t -> t
                  val sexp_of_t : t -> Sexplib.Sexp.t
                end
              module Tree :
                sig
                  type t =
                      (Elt.t, Elt.comparator_witness)
                      Core_kernel.Core_set.Tree.t
                  val length : t -> int
                  val is_empty : t -> bool
                  val iter : t -> f:(Elt.t -> unit) -> unit
                  val fold :
                    t ->
                    init:'accum -> f:('accum -> Elt.t -> 'accum) -> 'accum
                  val exists : t -> f:(Elt.t -> bool) -> bool
                  val for_all : t -> f:(Elt.t -> bool) -> bool
                  val count : t -> f:(Elt.t -> bool) -> int
                  val sum :
                    (module Core_kernel.Commutative_group.S with type t = 'sum) ->
                    t -> f:(Elt.t -> 'sum) -> 'sum
                  val find : t -> f:(Elt.t -> bool) -> Elt.t option
                  val find_map : t -> f:(Elt.t -> 'a option) -> 'a option
                  val to_list : t -> Elt.t list
                  val to_array : t -> Elt.t array
                  val invariants : t -> bool
                  val mem : t -> Elt.t -> bool
                  val add : t -> Elt.t -> t
                  val remove : t -> Elt.t -> t
                  val union : t -> t -> t
                  val inter : t -> t -> t
                  val diff : t -> t -> t
                  val symmetric_diff :
                    t ->
                    t ->
                    (Elt.t, Elt.t) Core_kernel.Either.t
                    Core_kernel.Sequence.t
                  val compare_direct : t -> t -> int
                  val equal : t -> t -> bool
                  val subset : t -> t -> bool
                  val fold_until :
                    t ->
                    init:'->
                    f:('-> Elt.t -> [ `Continue of '| `Stop of 'b ]) ->
                    'b
                  val fold_right :
                    t -> init:'-> f:(Elt.t -> '-> 'b) -> 'b
                  val iter2 :
                    t ->
                    t ->
                    f:([ `Both of Elt.t * Elt.t
                       | `Left of Elt.t
                       | `Right of Elt.t ] -> unit) ->
                    unit
                  val filter : t -> f:(Elt.t -> bool) -> t
                  val partition_tf : t -> f:(Elt.t -> bool) -> t * t
                  val elements : t -> Elt.t list
                  val min_elt : t -> Elt.t option
                  val min_elt_exn : t -> Elt.t
                  val max_elt : t -> Elt.t option
                  val max_elt_exn : t -> Elt.t
                  val choose : t -> Elt.t option
                  val choose_exn : t -> Elt.t
                  val split : t -> Elt.t -> t * Elt.t option * t
                  val group_by :
                    t -> equiv:(Elt.t -> Elt.t -> bool) -> t list
                  val find_exn : t -> f:(Elt.t -> bool) -> Elt.t
                  val find_index : t -> int -> Elt.t option
                  val remove_index : t -> int -> t
                  val to_tree : t -> t
                  val to_sequence :
                    ?order:[ `Decreasing | `Increasing ] ->
                    ?greater_or_equal_to:Elt.t ->
                    ?less_or_equal_to:Elt.t ->
                    t -> Elt.t Core_kernel.Sequence.t
                  val to_map :
                    t ->
                    f:(Elt.t -> 'data) ->
                    (Elt.t, 'data, Elt.comparator_witness)
                    Core_kernel.Core_set_intf.Map.t
                  val empty : t
                  val singleton : Elt.t -> t
                  val union_list : t list -> t
                  val of_list : Elt.t list -> t
                  val of_array : Elt.t array -> t
                  val of_sorted_array :
                    Elt.t array -> t Core_kernel.Or_error.t
                  val of_sorted_array_unchecked : Elt.t array -> t
                  val stable_dedup_list : Elt.t list -> Elt.t list
                  val map :
                    ('a, 'b) Core_kernel.Core_set.Tree.t ->
                    f:('-> Elt.t) -> t
                  val filter_map :
                    ('a, 'b) Core_kernel.Core_set.Tree.t ->
                    f:('-> Elt.t option) -> t
                  val of_tree : t -> t
                  val of_map_keys :
                    (Elt.t, 'a, Elt.comparator_witness)
                    Core_kernel.Core_set_intf.Map.t -> t
                  val t_of_sexp : Sexplib.Sexp.t -> t
                  val sexp_of_t : t -> Sexplib.Sexp.t
                  val compare : t -> t -> int
                end
              type t = (Elt.t, Elt.comparator_witness) Core_kernel.Core_set.t
              val length : t -> int
              val is_empty : t -> bool
              val iter : t -> f:(Elt.t -> unit) -> unit
              val fold :
                t -> init:'accum -> f:('accum -> Elt.t -> 'accum) -> 'accum
              val exists : t -> f:(Elt.t -> bool) -> bool
              val for_all : t -> f:(Elt.t -> bool) -> bool
              val count : t -> f:(Elt.t -> bool) -> int
              val sum :
                (module Core_kernel.Commutative_group.S with type t = 'sum) ->
                t -> f:(Elt.t -> 'sum) -> 'sum
              val find : t -> f:(Elt.t -> bool) -> Elt.t option
              val find_map : t -> f:(Elt.t -> 'a option) -> 'a option
              val to_list : t -> Elt.t list
              val to_array : t -> Elt.t array
              val invariants : t -> bool
              val mem : t -> Elt.t -> bool
              val add : t -> Elt.t -> t
              val remove : t -> Elt.t -> t
              val union : t -> t -> t
              val inter : t -> t -> t
              val diff : t -> t -> t
              val symmetric_diff :
                t ->
                t ->
                (Elt.t, Elt.t) Core_kernel.Either.t Core_kernel.Sequence.t
              val compare_direct : t -> t -> int
              val equal : t -> t -> bool
              val subset : t -> t -> bool
              val fold_until :
                t ->
                init:'->
                f:('-> Elt.t -> [ `Continue of '| `Stop of 'b ]) -> 'b
              val fold_right : t -> init:'-> f:(Elt.t -> '-> 'b) -> 'b
              val iter2 :
                t ->
                t ->
                f:([ `Both of Elt.t * Elt.t
                   | `Left of Elt.t
                   | `Right of Elt.t ] -> unit) ->
                unit
              val filter : t -> f:(Elt.t -> bool) -> t
              val partition_tf : t -> f:(Elt.t -> bool) -> t * t
              val elements : t -> Elt.t list
              val min_elt : t -> Elt.t option
              val min_elt_exn : t -> Elt.t
              val max_elt : t -> Elt.t option
              val max_elt_exn : t -> Elt.t
              val choose : t -> Elt.t option
              val choose_exn : t -> Elt.t
              val split : t -> Elt.t -> t * Elt.t option * t
              val group_by : t -> equiv:(Elt.t -> Elt.t -> bool) -> t list
              val find_exn : t -> f:(Elt.t -> bool) -> Elt.t
              val find_index : t -> int -> Elt.t option
              val remove_index : t -> int -> t
              val to_tree : t -> Tree.t
              val to_sequence :
                ?order:[ `Decreasing | `Increasing ] ->
                ?greater_or_equal_to:Elt.t ->
                ?less_or_equal_to:Elt.t -> t -> Elt.t Core_kernel.Sequence.t
              val to_map :
                t ->
                f:(Elt.t -> 'data) ->
                (Elt.t, 'data, Elt.comparator_witness)
                Core_kernel.Core_set_intf.Map.t
              val empty : t
              val singleton : Elt.t -> t
              val union_list : t list -> t
              val of_list : Elt.t list -> t
              val of_array : Elt.t array -> t
              val of_sorted_array : Elt.t array -> t Core_kernel.Or_error.t
              val of_sorted_array_unchecked : Elt.t array -> t
              val stable_dedup_list : Elt.t list -> Elt.t list
              val map :
                ('a, 'b) Core_kernel.Core_set.t -> f:('-> Elt.t) -> t
              val filter_map :
                ('a, 'b) Core_kernel.Core_set.t ->
                f:('-> Elt.t option) -> t
              val of_tree : Tree.t -> t
              val of_map_keys :
                (Elt.t, 'a, Elt.comparator_witness)
                Core_kernel.Core_set_intf.Map.t -> t
              val t_of_sexp : Sexplib.Sexp.t -> t
              val sexp_of_t : t -> Sexplib.Sexp.t
              val compare : t -> t -> int
              val bin_size_t : t Bin_prot.Size.sizer
              val bin_write_t : t Bin_prot.Write.writer
              val bin_read_t : t Bin_prot.Read.reader
              val __bin_read_t__ : (int -> t) Bin_prot.Read.reader
              val bin_writer_t : t Bin_prot.Type_class.writer
              val bin_reader_t : t Bin_prot.Type_class.reader
              val bin_t : t Bin_prot.Type_class.t
            end
          val validate_positive : t Core_kernel.Validate.check
          val validate_non_negative : t Core_kernel.Validate.check
          val validate_negative : t Core_kernel.Validate.check
          val validate_non_positive : t Core_kernel.Validate.check
          val is_positive : t -> bool
          val is_non_negative : t -> bool
          val is_negative : t -> bool
          val is_non_positive : t -> bool
          val of_float : float -> t
          val to_float : t -> float
          val hash : t -> int
          val hashable : t Core_kernel.Hashable.Hashtbl.Hashable.t
          module Table :
            sig
              type key = t
              type ('a, 'b) hashtbl = ('a, 'b) Core_kernel.Hashable.Hashtbl.t
              type 'b t = (key, 'b) hashtbl
              type ('a, 'b) t_ = 'b t
              type 'a key_ = key
              val hashable : key Core_kernel.Core_hashtbl_intf.Hashable.t
              val create :
                ('a key_, 'b, unit -> ('a, 'b) t_)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val of_alist :
                ('a key_, 'b,
                 ('a key_ * 'b) list ->
                 [ `Duplicate_key of 'a key_ | `Ok of ('a, 'b) t_ ])
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val of_alist_report_all_dups :
                ('a key_, 'b,
                 ('a key_ * 'b) list ->
                 [ `Duplicate_keys of 'a key_ list | `Ok of ('a, 'b) t_ ])
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val of_alist_or_error :
                ('a key_, 'b,
                 ('a key_ * 'b) list -> ('a, 'b) t_ Core_kernel.Or_error.t)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val of_alist_exn :
                ('a key_, 'b, ('a key_ * 'b) list -> ('a, 'b) t_)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val of_alist_multi :
                ('a key_, 'b list, ('a key_ * 'b) list -> ('a, 'b list) t_)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val create_mapped :
                ('a key_, 'b,
                 get_key:('-> 'a key_) ->
                 get_data:('-> 'b) ->
                 'r list ->
                 [ `Duplicate_keys of 'a key_ list | `Ok of ('a, 'b) t_ ])
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val create_with_key :
                ('a key_, 'r,
                 get_key:('-> 'a key_) ->
                 'r list ->
                 [ `Duplicate_keys of 'a key_ list | `Ok of ('a, 'r) t_ ])
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val create_with_key_or_error :
                ('a key_, 'r,
                 get_key:('-> 'a key_) ->
                 'r list -> ('a, 'r) t_ Core_kernel.Or_error.t)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val create_with_key_exn :
                ('a key_, 'r,
                 get_key:('-> 'a key_) -> 'r list -> ('a, 'r) t_)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val group :
                ('a key_, 'b,
                 get_key:('-> 'a key_) ->
                 get_data:('-> 'b) ->
                 combine:('-> '-> 'b) -> 'r list -> ('a, 'b) t_)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val sexp_of_key : ('a, 'b) t_ -> 'a key_ -> Sexplib.Sexp.t
              val clear : ('a, 'b) t_ -> unit
              val copy : ('a, 'b) t_ -> ('a, 'b) t_
              val invariant : ('a, 'b) t_ -> unit
              val fold :
                ('a, 'b) t_ ->
                init:'-> f:(key:'a key_ -> data:'-> '-> 'c) -> 'c
              val iter :
                ('a, 'b) t_ -> f:(key:'a key_ -> data:'-> unit) -> unit
              val existsi :
                ('a, 'b) t_ -> f:(key:'a key_ -> data:'-> bool) -> bool
              val exists : ('a, 'b) t_ -> f:('-> bool) -> bool
              val for_alli :
                ('a, 'b) t_ -> f:(key:'a key_ -> data:'-> bool) -> bool
              val for_all : ('a, 'b) t_ -> f:('-> bool) -> bool
              val length : ('a, 'b) t_ -> int
              val is_empty : ('a, 'b) t_ -> bool
              val mem : ('a, 'b) t_ -> 'a key_ -> bool
              val remove : ('a, 'b) t_ -> 'a key_ -> unit
              val remove_one : ('a, 'b list) t_ -> 'a key_ -> unit
              val replace : ('a, 'b) t_ -> key:'a key_ -> data:'-> unit
              val set : ('a, 'b) t_ -> key:'a key_ -> data:'-> unit
              val add :
                ('a, 'b) t_ -> key:'a key_ -> data:'-> [ `Duplicate | `Ok ]
              val add_or_error :
                ('a, 'b) t_ ->
                key:'a key_ -> data:'-> unit Core_kernel.Or_error.t
              val add_exn : ('a, 'b) t_ -> key:'a key_ -> data:'-> unit
              val change :
                ('a, 'b) t_ -> 'a key_ -> ('b option -> 'b option) -> unit
              val add_multi :
                ('a, 'b list) t_ -> key:'a key_ -> data:'-> unit
              val remove_multi : ('a, 'b list) t_ -> 'a key_ -> unit
              val map :
                ('c, ('a, 'b) t_ -> f:('-> 'c) -> ('a, 'c) t_)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val mapi :
                ('c,
                 ('a, 'b) t_ ->
                 f:(key:'a key_ -> data:'-> 'c) -> ('a, 'c) t_)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val filter_map :
                ('c, ('a, 'b) t_ -> f:('-> 'c option) -> ('a, 'c) t_)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val filter_mapi :
                ('c,
                 ('a, 'b) t_ ->
                 f:(key:'a key_ -> data:'-> 'c option) -> ('a, 'c) t_)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val filter : ('a, 'b) t_ -> f:('-> bool) -> ('a, 'b) t_
              val filteri :
                ('a, 'b) t_ ->
                f:(key:'a key_ -> data:'-> bool) -> ('a, 'b) t_
              val partition_map :
                ('c,
                 ('d,
                  ('a, 'b) t_ ->
                  f:('-> [ `Fst of '| `Snd of 'd ]) ->
                  ('a, 'c) t_ * ('a, 'd) t_)
                 Core_kernel.Core_hashtbl_intf.no_map_options)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val partition_mapi :
                ('c,
                 ('d,
                  ('a, 'b) t_ ->
                  f:(key:'a key_ -> data:'-> [ `Fst of '| `Snd of 'd ]) ->
                  ('a, 'c) t_ * ('a, 'd) t_)
                 Core_kernel.Core_hashtbl_intf.no_map_options)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val partition_tf :
                ('a, 'b) t_ -> f:('-> bool) -> ('a, 'b) t_ * ('a, 'b) t_
              val partitioni_tf :
                ('a, 'b) t_ ->
                f:(key:'a key_ -> data:'-> bool) ->
                ('a, 'b) t_ * ('a, 'b) t_
              val find_or_add :
                ('a, 'b) t_ -> 'a key_ -> default:(unit -> 'b) -> 'b
              val find : ('a, 'b) t_ -> 'a key_ -> 'b option
              val find_exn : ('a, 'b) t_ -> 'a key_ -> 'b
              val find_and_call :
                ('a, 'b) t_ ->
                'a key_ ->
                if_found:('-> 'c) -> if_not_found:('a key_ -> 'c) -> 'c
              val find_and_remove : ('a, 'b) t_ -> 'a key_ -> 'b option
              val iter_vals : ('a, 'b) t_ -> f:('-> unit) -> unit
              val merge :
                ('c,
                 ('k, 'a) t_ ->
                 ('k, 'b) t_ ->
                 f:(key:'k key_ ->
                    [ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                    'c option) ->
                 ('k, 'c) t_)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val merge_into :
                f:(key:'a key_ -> '-> 'c option -> 'c option) ->
                src:('a, 'b) t_ -> dst:('a, 'c) t_ -> unit
              val keys : ('a, 'b) t_ -> 'a key_ list
              val data : ('a, 'b) t_ -> 'b list
              val filter_inplace : ('a, 'b) t_ -> f:('-> bool) -> unit
              val filteri_inplace :
                ('a, 'b) t_ -> f:('a key_ -> '-> bool) -> unit
              val equal :
                ('a, 'b) t_ -> ('a, 'b) t_ -> ('-> '-> bool) -> bool
              val similar :
                ('a, 'b1) t_ -> ('a, 'b2) t_ -> ('b1 -> 'b2 -> bool) -> bool
              val to_alist : ('a, 'b) t_ -> ('a key_ * 'b) list
              val validate :
                name:('a key_ -> string) ->
                'Core_kernel.Validate.check ->
                ('a, 'b) t_ Core_kernel.Validate.check
              val incr : ?by:int -> ('a, int) t_ -> 'a key_ -> unit
              val t_of_sexp :
                (Sexplib.Sexp.t -> 'b) -> Sexplib.Sexp.t -> 'b t
              val sexp_of_t :
                ('-> Sexplib.Sexp.t) -> 'b t -> Sexplib.Sexp.t
              val bin_size_t : ('a, 'a t) Bin_prot.Size.sizer1
              val bin_write_t : ('a, 'a t) Bin_prot.Write.writer1
              val bin_read_t : ('a, 'a t) Bin_prot.Read.reader1
              val __bin_read_t__ : ('a, int -> 'a t) Bin_prot.Read.reader1
              val bin_writer_t : ('a, 'a t) Bin_prot.Type_class.S1.writer
              val bin_reader_t : ('a, 'a t) Bin_prot.Type_class.S1.reader
              val bin_t : ('a, 'a t) Bin_prot.Type_class.S1.t
            end
          module Hash_set :
            sig
              type elt = t
              type 'a hash_set = 'Core_kernel.Hash_set.t
              type t = elt hash_set
              type 'a t_ = t
              type 'a elt_ = elt
              val create :
                ('a, unit -> 'a t_)
                Core_kernel.Hash_set_intf.create_options_without_hashable
              val of_list :
                ('a, 'a elt_ list -> 'a t_)
                Core_kernel.Hash_set_intf.create_options_without_hashable
              val t_of_sexp : Sexplib.Sexp.t -> t
              val sexp_of_t : t -> Sexplib.Sexp.t
              val bin_size_t : t Bin_prot.Size.sizer
              val bin_write_t : t Bin_prot.Write.writer
              val bin_read_t : t Bin_prot.Read.reader
              val __bin_read_t__ : (int -> t) Bin_prot.Read.reader
              val bin_writer_t : t Bin_prot.Type_class.writer
              val bin_reader_t : t Bin_prot.Type_class.reader
              val bin_t : t Bin_prot.Type_class.t
            end
          module Hash_queue :
            sig
              module Key :
                sig
                  type t = t
                  val hash : t -> int
                  val t_of_sexp : Sexplib.Sexp.t -> t
                  val sexp_of_t : t -> Sexplib.Sexp.t
                  val compare : t -> t -> int
                end
              type 'a t = 'Time.Span.Hash_queue.t
              val length : 'a t -> int
              val is_empty : 'a t -> bool
              val iter : 'a t -> f:('-> unit) -> unit
              val fold :
                'a t -> init:'accum -> f:('accum -> '-> 'accum) -> 'accum
              val exists : 'a t -> f:('-> bool) -> bool
              val for_all : 'a t -> f:('-> bool) -> bool
              val count : 'a t -> f:('-> bool) -> int
              val sum :
                (module Core_kernel.Commutative_group.S with type t = 'sum) ->
                'a t -> f:('-> 'sum) -> 'sum
              val find : 'a t -> f:('-> bool) -> 'a option
              val find_map : 'a t -> f:('-> 'b option) -> 'b option
              val to_list : 'a t -> 'a list
              val to_array : 'a t -> 'a array
              val min_elt : 'a t -> cmp:('-> '-> int) -> 'a option
              val max_elt : 'a t -> cmp:('-> '-> int) -> 'a option
              val invariant : 'a t -> unit
              val create : ?growth_allowed:bool -> ?size:int -> 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 first : 'a t -> 'a option
              val first_with_key : 'a t -> (Key.t * 'a) option
              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
              val sexp_of_t :
                ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
            end
          val pp : Format.formatter -> t -> unit
          val ( >=. ) : t -> t -> bool
          val ( <=. ) : t -> t -> bool
          val ( =. ) : t -> t -> bool
          val ( >. ) : t -> t -> bool
          val ( <. ) : t -> t -> bool
          val ( <>. ) : t -> t -> bool
          val robustly_compare : t -> t -> int
          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 robust_comparison_tolerance : t
          val zero : t
          val create :
            ?sign:Core_kernel.Std.Float.Sign.t ->
            ?day:int ->
            ?hr:int ->
            ?min:int -> ?sec:int -> ?ms:int -> ?us:int -> unit -> t
          val to_parts : t -> Span.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 ( + ) : t -> t -> t
          val ( - ) : t -> t -> t
          val abs : t -> t
          val neg : t -> t
          val scale : t -> float -> t
          val ( / ) : t -> float -> t
          val ( // ) : t -> t -> float
          val to_short_string : t -> string
          module Unit_of_time :
            sig
              type t =
                Time.Span.Unit_of_time.t =
                  Nanosecond
                | Microsecond
                | Millisecond
                | Second
                | Minute
                | Hour
                | Day
              val compare : t -> t -> int
              val t_of_sexp : Sexplib.Sexp.t -> t
              val sexp_of_t : t -> Sexplib.Sexp.t
            end
          val to_unit_of_time : t -> Unit_of_time.t
          val of_unit_of_time : Unit_of_time.t -> t
          val to_string_hum :
            ?delimiter:char ->
            ?decimals:int ->
            ?align_decimal:bool ->
            ?unit_of_time:Unit_of_time.t -> t -> string
          val randomize : t -> percent:float -> t
          module Stable :
            sig
              module V1 :
                sig
                  type t = t
                  val compare : t -> t -> int
                  val bin_t : t Core_kernel.Std.Bin_prot.Type_class.t
                  val bin_read_t : t Core_kernel.Std.Bin_prot.Read.reader
                  val __bin_read_t__ :
                    (int -> t) Core_kernel.Std.Bin_prot.Read.reader
                  val bin_reader_t :
                    t Core_kernel.Std.Bin_prot.Type_class.reader
                  val bin_size_t : t Core_kernel.Std.Bin_prot.Size.sizer
                  val bin_write_t : t Core_kernel.Std.Bin_prot.Write.writer
                  val bin_writer_t :
                    t Core_kernel.Std.Bin_prot.Type_class.writer
                  val t_of_sexp : Sexplib.Sexp.t -> t
                  val sexp_of_t : t -> Sexplib.Sexp.t
                end
              module V2 :
                sig
                  type t = t
                  val compare : t -> t -> int
                  val bin_t : t Core_kernel.Std.Bin_prot.Type_class.t
                  val bin_read_t : t Core_kernel.Std.Bin_prot.Read.reader
                  val __bin_read_t__ :
                    (int -> t) Core_kernel.Std.Bin_prot.Read.reader
                  val bin_reader_t :
                    t Core_kernel.Std.Bin_prot.Type_class.reader
                  val bin_size_t : t Core_kernel.Std.Bin_prot.Size.sizer
                  val bin_write_t : t Core_kernel.Std.Bin_prot.Write.writer
                  val bin_writer_t :
                    t Core_kernel.Std.Bin_prot.Type_class.writer
                  val t_of_sexp : Sexplib.Sexp.t -> t
                  val sexp_of_t : t -> Sexplib.Sexp.t
                end
            end
          val t_of_sexp : Sexplib.Sexp.t -> t
          val sexp_of_t : t -> Sexplib.Sexp.t
          val bin_t : t Core_kernel.Std.Bin_prot.Type_class.t
          val bin_read_t : t Core_kernel.Std.Bin_prot.Read.reader
          val __bin_read_t__ :
            (int -> t) Core_kernel.Std.Bin_prot.Read.reader
          val bin_reader_t : t Core_kernel.Std.Bin_prot.Type_class.reader
          val bin_size_t : t Core_kernel.Std.Bin_prot.Size.sizer
          val bin_write_t : t Core_kernel.Std.Bin_prot.Write.writer
          val bin_writer_t : t Core_kernel.Std.Bin_prot.Type_class.writer
          module Parts :
            sig
              type t =
                Span.Parts.t = private {
                sign : Core_kernel.Std.Float.Sign.t;
                hr : int;
                min : int;
                sec : int;
                ms : int;
                us : int;
              }
              val t_of_sexp : Sexplib.Sexp.t -> t
              val sexp_of_t : t -> Sexplib.Sexp.t
            end
        end
      module Zone :
        sig
          type t = Zone.t
          val of_string : string -> t
          val to_string : t -> string
          val ( >= ) : t -> t -> bool
          val ( <= ) : t -> t -> bool
          val ( = ) : t -> t -> bool
          val ( > ) : t -> t -> bool
          val ( < ) : t -> t -> bool
          val ( <> ) : t -> t -> bool
          val equal : t -> t -> bool
          val compare : t -> t -> int
          val min : t -> t -> t
          val max : t -> t -> t
          val ascending : t -> t -> int
          val descending : t -> t -> int
          val between : t -> low:t -> high:t -> bool
          module Replace_polymorphic_compare :
            sig
              val ( >= ) : t -> t -> bool
              val ( <= ) : t -> t -> bool
              val ( = ) : t -> t -> bool
              val ( > ) : t -> t -> bool
              val ( < ) : t -> t -> bool
              val ( <> ) : t -> t -> bool
              val equal : t -> t -> bool
              val compare : t -> t -> int
              val min : t -> t -> t
              val max : t -> t -> t
              val _squelch_unused_module_warning_ : unit
            end
          type comparator_witness = Time.Zone.comparator_witness
          val validate_lbound :
            min:t Core_kernel.Comparable_intf.bound ->
            t Core_kernel.Validate.check
          val validate_ubound :
            max:t Core_kernel.Comparable_intf.bound ->
            t Core_kernel.Validate.check
          val validate_bound :
            min:t Core_kernel.Comparable_intf.bound ->
            max:t Core_kernel.Comparable_intf.bound ->
            t Core_kernel.Validate.check
          val comparator :
            (t, comparator_witness) Core_kernel.Comparator.comparator
          module Map :
            sig
              module Key :
                sig
                  type t = t
                  type comparator_witness = comparator_witness
                  val comparator :
                    (t, comparator_witness) Core_kernel.Comparator.comparator
                end
              module Tree :
                sig
                  type 'a t =
                      (Key.t, 'a, Key.comparator_witness)
                      Core_kernel.Core_map.Tree.t
                  val empty : 'a t
                  val singleton : Key.t -> '-> 'a t
                  val of_alist :
                    (Key.t * 'a) list ->
                    [ `Duplicate_key of Key.t | `Ok of 'a t ]
                  val of_alist_or_error :
                    (Key.t * 'a) list -> 'a t Core_kernel.Or_error.t
                  val of_alist_exn : (Key.t * 'a) list -> 'a t
                  val of_alist_multi : (Key.t * 'a) list -> 'a list t
                  val of_alist_fold :
                    (Key.t * 'a) list ->
                    init:'-> f:('-> '-> 'b) -> 'b t
                  val of_alist_reduce :
                    (Key.t * 'a) list -> f:('-> '-> 'a) -> 'a t
                  val of_sorted_array :
                    (Key.t * 'a) array -> 'a t Core_kernel.Or_error.t
                  val of_sorted_array_unchecked : (Key.t * 'a) array -> 'a t
                  val of_tree : 'a t -> 'a t
                  val invariants : 'a t -> bool
                  val is_empty : 'a t -> bool
                  val length : 'a t -> int
                  val add : 'a t -> key:Key.t -> data:'-> 'a t
                  val add_multi :
                    'a list t -> key:Key.t -> data:'-> 'a list t
                  val change :
                    'a t -> Key.t -> ('a option -> 'a option) -> 'a t
                  val find : 'a t -> Key.t -> 'a option
                  val find_exn : 'a t -> Key.t -> 'a
                  val remove : 'a t -> Key.t -> 'a t
                  val mem : 'a t -> Key.t -> bool
                  val iter : 'a t -> f:(key:Key.t -> data:'-> unit) -> unit
                  val iter2 :
                    'a t ->
                    'b t ->
                    f:(key:Key.t ->
                       data:[ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                       unit) ->
                    unit
                  val map : 'a t -> f:('-> 'b) -> 'b t
                  val mapi : 'a t -> f:(key:Key.t -> data:'-> 'b) -> 'b t
                  val fold :
                    'a t ->
                    init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
                  val fold_right :
                    'a t ->
                    init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
                  val filter :
                    'a t -> f:(key:Key.t -> data:'-> bool) -> 'a t
                  val filter_map : 'a t -> f:('-> 'b option) -> 'b t
                  val filter_mapi :
                    'a t -> f:(key:Key.t -> data:'-> 'b option) -> 'b t
                  val compare_direct :
                    ('-> '-> int) -> 'a t -> 'a t -> int
                  val equal : ('-> '-> bool) -> 'a t -> 'a t -> bool
                  val keys : 'a t -> Key.t list
                  val data : 'a t -> 'a list
                  val to_alist : 'a t -> (Key.t * 'a) list
                  val validate :
                    name:(Key.t -> string) ->
                    'Core_kernel.Validate.check ->
                    'a t Core_kernel.Validate.check
                  val merge :
                    'a t ->
                    'b t ->
                    f:(key:Key.t ->
                       [ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                       'c option) ->
                    'c t
                  val symmetric_diff :
                    'a t ->
                    'a t ->
                    data_equal:('-> '-> bool) ->
                    (Key.t *
                     [ `Left of '| `Right of '| `Unequal of 'a * 'a ])
                    Core_kernel.Sequence.t
                  val min_elt : 'a t -> (Key.t * 'a) option
                  val min_elt_exn : 'a t -> Key.t * 'a
                  val max_elt : 'a t -> (Key.t * 'a) option
                  val max_elt_exn : 'a t -> Key.t * 'a
                  val for_all : 'a t -> f:('-> bool) -> bool
                  val exists : 'a t -> f:('-> bool) -> bool
                  val split :
                    'a t -> Key.t -> 'a t * (Key.t * 'a) option * 'a t
                  val fold_range_inclusive :
                    'a t ->
                    min:Key.t ->
                    max:Key.t ->
                    init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
                  val range_to_alist :
                    'a t -> min:Key.t -> max:Key.t -> (Key.t * 'a) list
                  val closest_key :
                    'a t ->
                    [ `Greater_or_equal_to
                    | `Greater_than
                    | `Less_or_equal_to
                    | `Less_than ] -> Key.t -> (Key.t * 'a) option
                  val nth : 'a t -> int -> (Key.t * 'a) option
                  val rank : 'a t -> Key.t -> int option
                  val to_tree : 'a t -> 'a t
                  val to_sequence :
                    ?order:[ `Decreasing_key | `Increasing_key ] ->
                    ?keys_greater_or_equal_to:Key.t ->
                    ?keys_less_or_equal_to:Key.t ->
                    'a t -> (Key.t * 'a) Core_kernel.Sequence.t
                  val t_of_sexp :
                    (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a t
                  val sexp_of_t :
                    ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
                end
              type 'a t =
                  (Key.t, 'a, Key.comparator_witness) Core_kernel.Core_map.t
              val empty : 'a t
              val singleton : Key.t -> '-> 'a t
              val of_alist :
                (Key.t * 'a) list ->
                [ `Duplicate_key of Key.t | `Ok of 'a t ]
              val of_alist_or_error :
                (Key.t * 'a) list -> 'a t Core_kernel.Or_error.t
              val of_alist_exn : (Key.t * 'a) list -> 'a t
              val of_alist_multi : (Key.t * 'a) list -> 'a list t
              val of_alist_fold :
                (Key.t * 'a) list -> init:'-> f:('-> '-> 'b) -> 'b t
              val of_alist_reduce :
                (Key.t * 'a) list -> f:('-> '-> 'a) -> 'a t
              val of_sorted_array :
                (Key.t * 'a) array -> 'a t Core_kernel.Or_error.t
              val of_sorted_array_unchecked : (Key.t * 'a) array -> 'a t
              val of_tree : 'Tree.t -> 'a t
              val invariants : 'a t -> bool
              val is_empty : 'a t -> bool
              val length : 'a t -> int
              val add : 'a t -> key:Key.t -> data:'-> 'a t
              val add_multi : 'a list t -> key:Key.t -> data:'-> 'a list t
              val change : 'a t -> Key.t -> ('a option -> 'a option) -> 'a t
              val find : 'a t -> Key.t -> 'a option
              val find_exn : 'a t -> Key.t -> 'a
              val remove : 'a t -> Key.t -> 'a t
              val mem : 'a t -> Key.t -> bool
              val iter : 'a t -> f:(key:Key.t -> data:'-> unit) -> unit
              val iter2 :
                'a t ->
                'b t ->
                f:(key:Key.t ->
                   data:[ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                   unit) ->
                unit
              val map : 'a t -> f:('-> 'b) -> 'b t
              val mapi : 'a t -> f:(key:Key.t -> data:'-> 'b) -> 'b t
              val fold :
                'a t -> init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
              val fold_right :
                'a t -> init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
              val filter : 'a t -> f:(key:Key.t -> data:'-> bool) -> 'a t
              val filter_map : 'a t -> f:('-> 'b option) -> 'b t
              val filter_mapi :
                'a t -> f:(key:Key.t -> data:'-> 'b option) -> 'b t
              val compare_direct : ('-> '-> int) -> 'a t -> 'a t -> int
              val equal : ('-> '-> bool) -> 'a t -> 'a t -> bool
              val keys : 'a t -> Key.t list
              val data : 'a t -> 'a list
              val to_alist : 'a t -> (Key.t * 'a) list
              val validate :
                name:(Key.t -> string) ->
                'Core_kernel.Validate.check ->
                'a t Core_kernel.Validate.check
              val merge :
                'a t ->
                'b t ->
                f:(key:Key.t ->
                   [ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                   'c option) ->
                'c t
              val symmetric_diff :
                'a t ->
                'a t ->
                data_equal:('-> '-> bool) ->
                (Key.t * [ `Left of '| `Right of '| `Unequal of 'a * 'a ])
                Core_kernel.Sequence.t
              val min_elt : 'a t -> (Key.t * 'a) option
              val min_elt_exn : 'a t -> Key.t * 'a
              val max_elt : 'a t -> (Key.t * 'a) option
              val max_elt_exn : 'a t -> Key.t * 'a
              val for_all : 'a t -> f:('-> bool) -> bool
              val exists : 'a t -> f:('-> bool) -> bool
              val split : 'a t -> Key.t -> 'a t * (Key.t * 'a) option * 'a t
              val fold_range_inclusive :
                'a t ->
                min:Key.t ->
                max:Key.t ->
                init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
              val range_to_alist :
                'a t -> min:Key.t -> max:Key.t -> (Key.t * 'a) list
              val closest_key :
                'a t ->
                [ `Greater_or_equal_to
                | `Greater_than
                | `Less_or_equal_to
                | `Less_than ] -> Key.t -> (Key.t * 'a) option
              val nth : 'a t -> int -> (Key.t * 'a) option
              val rank : 'a t -> Key.t -> int option
              val to_tree : 'a t -> 'Tree.t
              val to_sequence :
                ?order:[ `Decreasing_key | `Increasing_key ] ->
                ?keys_greater_or_equal_to:Key.t ->
                ?keys_less_or_equal_to:Key.t ->
                'a t -> (Key.t * 'a) Core_kernel.Sequence.t
              val t_of_sexp :
                (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a t
              val sexp_of_t :
                ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
              val compare : ('-> '-> int) -> 'a t -> 'a t -> int
              val bin_size_t : ('a, 'a t) Bin_prot.Size.sizer1
              val bin_write_t : ('a, 'a t) Bin_prot.Write.writer1
              val bin_read_t : ('a, 'a t) Bin_prot.Read.reader1
              val __bin_read_t__ : ('a, int -> 'a t) Bin_prot.Read.reader1
              val bin_writer_t : ('a, 'a t) Bin_prot.Type_class.S1.writer
              val bin_reader_t : ('a, 'a t) Bin_prot.Type_class.S1.reader
              val bin_t : ('a, 'a t) Bin_prot.Type_class.S1.t
            end
          module Set :
            sig
              module Elt :
                sig
                  type t = t
                  type comparator_witness = comparator_witness
                  val comparator :
                    (t, comparator_witness) Core_kernel.Comparator.comparator
                  val t_of_sexp : Sexplib.Sexp.t -> t
                  val sexp_of_t : t -> Sexplib.Sexp.t
                end
              module Tree :
                sig
                  type t =
                      (Elt.t, Elt.comparator_witness)
                      Core_kernel.Core_set.Tree.t
                  val length : t -> int
                  val is_empty : t -> bool
                  val iter : t -> f:(Elt.t -> unit) -> unit
                  val fold :
                    t ->
                    init:'accum -> f:('accum -> Elt.t -> 'accum) -> 'accum
                  val exists : t -> f:(Elt.t -> bool) -> bool
                  val for_all : t -> f:(Elt.t -> bool) -> bool
                  val count : t -> f:(Elt.t -> bool) -> int
                  val sum :
                    (module Core_kernel.Commutative_group.S with type t = 'sum) ->
                    t -> f:(Elt.t -> 'sum) -> 'sum
                  val find : t -> f:(Elt.t -> bool) -> Elt.t option
                  val find_map : t -> f:(Elt.t -> 'a option) -> 'a option
                  val to_list : t -> Elt.t list
                  val to_array : t -> Elt.t array
                  val invariants : t -> bool
                  val mem : t -> Elt.t -> bool
                  val add : t -> Elt.t -> t
                  val remove : t -> Elt.t -> t
                  val union : t -> t -> t
                  val inter : t -> t -> t
                  val diff : t -> t -> t
                  val symmetric_diff :
                    t ->
                    t ->
                    (Elt.t, Elt.t) Core_kernel.Either.t
                    Core_kernel.Sequence.t
                  val compare_direct : t -> t -> int
                  val equal : t -> t -> bool
                  val subset : t -> t -> bool
                  val fold_until :
                    t ->
                    init:'->
                    f:('-> Elt.t -> [ `Continue of '| `Stop of 'b ]) ->
                    'b
                  val fold_right :
                    t -> init:'-> f:(Elt.t -> '-> 'b) -> 'b
                  val iter2 :
                    t ->
                    t ->
                    f:([ `Both of Elt.t * Elt.t
                       | `Left of Elt.t
                       | `Right of Elt.t ] -> unit) ->
                    unit
                  val filter : t -> f:(Elt.t -> bool) -> t
                  val partition_tf : t -> f:(Elt.t -> bool) -> t * t
                  val elements : t -> Elt.t list
                  val min_elt : t -> Elt.t option
                  val min_elt_exn : t -> Elt.t
                  val max_elt : t -> Elt.t option
                  val max_elt_exn : t -> Elt.t
                  val choose : t -> Elt.t option
                  val choose_exn : t -> Elt.t
                  val split : t -> Elt.t -> t * Elt.t option * t
                  val group_by :
                    t -> equiv:(Elt.t -> Elt.t -> bool) -> t list
                  val find_exn : t -> f:(Elt.t -> bool) -> Elt.t
                  val find_index : t -> int -> Elt.t option
                  val remove_index : t -> int -> t
                  val to_tree : t -> t
                  val to_sequence :
                    ?order:[ `Decreasing | `Increasing ] ->
                    ?greater_or_equal_to:Elt.t ->
                    ?less_or_equal_to:Elt.t ->
                    t -> Elt.t Core_kernel.Sequence.t
                  val to_map :
                    t ->
                    f:(Elt.t -> 'data) ->
                    (Elt.t, 'data, Elt.comparator_witness)
                    Core_kernel.Core_set_intf.Map.t
                  val empty : t
                  val singleton : Elt.t -> t
                  val union_list : t list -> t
                  val of_list : Elt.t list -> t
                  val of_array : Elt.t array -> t
                  val of_sorted_array :
                    Elt.t array -> t Core_kernel.Or_error.t
                  val of_sorted_array_unchecked : Elt.t array -> t
                  val stable_dedup_list : Elt.t list -> Elt.t list
                  val map :
                    ('a, 'b) Core_kernel.Core_set.Tree.t ->
                    f:('-> Elt.t) -> t
                  val filter_map :
                    ('a, 'b) Core_kernel.Core_set.Tree.t ->
                    f:('-> Elt.t option) -> t
                  val of_tree : t -> t
                  val of_map_keys :
                    (Elt.t, 'a, Elt.comparator_witness)
                    Core_kernel.Core_set_intf.Map.t -> t
                  val t_of_sexp : Sexplib.Sexp.t -> t
                  val sexp_of_t : t -> Sexplib.Sexp.t
                  val compare : t -> t -> int
                end
              type t = (Elt.t, Elt.comparator_witness) Core_kernel.Core_set.t
              val length : t -> int
              val is_empty : t -> bool
              val iter : t -> f:(Elt.t -> unit) -> unit
              val fold :
                t -> init:'accum -> f:('accum -> Elt.t -> 'accum) -> 'accum
              val exists : t -> f:(Elt.t -> bool) -> bool
              val for_all : t -> f:(Elt.t -> bool) -> bool
              val count : t -> f:(Elt.t -> bool) -> int
              val sum :
                (module Core_kernel.Commutative_group.S with type t = 'sum) ->
                t -> f:(Elt.t -> 'sum) -> 'sum
              val find : t -> f:(Elt.t -> bool) -> Elt.t option
              val find_map : t -> f:(Elt.t -> 'a option) -> 'a option
              val to_list : t -> Elt.t list
              val to_array : t -> Elt.t array
              val invariants : t -> bool
              val mem : t -> Elt.t -> bool
              val add : t -> Elt.t -> t
              val remove : t -> Elt.t -> t
              val union : t -> t -> t
              val inter : t -> t -> t
              val diff : t -> t -> t
              val symmetric_diff :
                t ->
                t ->
                (Elt.t, Elt.t) Core_kernel.Either.t Core_kernel.Sequence.t
              val compare_direct : t -> t -> int
              val equal : t -> t -> bool
              val subset : t -> t -> bool
              val fold_until :
                t ->
                init:'->
                f:('-> Elt.t -> [ `Continue of '| `Stop of 'b ]) -> 'b
              val fold_right : t -> init:'-> f:(Elt.t -> '-> 'b) -> 'b
              val iter2 :
                t ->
                t ->
                f:([ `Both of Elt.t * Elt.t
                   | `Left of Elt.t
                   | `Right of Elt.t ] -> unit) ->
                unit
              val filter : t -> f:(Elt.t -> bool) -> t
              val partition_tf : t -> f:(Elt.t -> bool) -> t * t
              val elements : t -> Elt.t list
              val min_elt : t -> Elt.t option
              val min_elt_exn : t -> Elt.t
              val max_elt : t -> Elt.t option
              val max_elt_exn : t -> Elt.t
              val choose : t -> Elt.t option
              val choose_exn : t -> Elt.t
              val split : t -> Elt.t -> t * Elt.t option * t
              val group_by : t -> equiv:(Elt.t -> Elt.t -> bool) -> t list
              val find_exn : t -> f:(Elt.t -> bool) -> Elt.t
              val find_index : t -> int -> Elt.t option
              val remove_index : t -> int -> t
              val to_tree : t -> Tree.t
              val to_sequence :
                ?order:[ `Decreasing | `Increasing ] ->
                ?greater_or_equal_to:Elt.t ->
                ?less_or_equal_to:Elt.t -> t -> Elt.t Core_kernel.Sequence.t
              val to_map :
                t ->
                f:(Elt.t -> 'data) ->
                (Elt.t, 'data, Elt.comparator_witness)
                Core_kernel.Core_set_intf.Map.t
              val empty : t
              val singleton : Elt.t -> t
              val union_list : t list -> t
              val of_list : Elt.t list -> t
              val of_array : Elt.t array -> t
              val of_sorted_array : Elt.t array -> t Core_kernel.Or_error.t
              val of_sorted_array_unchecked : Elt.t array -> t
              val stable_dedup_list : Elt.t list -> Elt.t list
              val map :
                ('a, 'b) Core_kernel.Core_set.t -> f:('-> Elt.t) -> t
              val filter_map :
                ('a, 'b) Core_kernel.Core_set.t ->
                f:('-> Elt.t option) -> t
              val of_tree : Tree.t -> t
              val of_map_keys :
                (Elt.t, 'a, Elt.comparator_witness)
                Core_kernel.Core_set_intf.Map.t -> t
              val t_of_sexp : Sexplib.Sexp.t -> t
              val sexp_of_t : t -> Sexplib.Sexp.t
              val compare : t -> t -> int
              val bin_size_t : t Bin_prot.Size.sizer
              val bin_write_t : t Bin_prot.Write.writer
              val bin_read_t : t Bin_prot.Read.reader
              val __bin_read_t__ : (int -> t) Bin_prot.Read.reader
              val bin_writer_t : t Bin_prot.Type_class.writer
              val bin_reader_t : t Bin_prot.Type_class.reader
              val bin_t : t Bin_prot.Type_class.t
            end
          val hash : t -> int
          val hashable : t Core_kernel.Hashable.Hashtbl.Hashable.t
          module Table :
            sig
              type key = t
              type ('a, 'b) hashtbl = ('a, 'b) Core_kernel.Hashable.Hashtbl.t
              type 'b t = (key, 'b) hashtbl
              type ('a, 'b) t_ = 'b t
              type 'a key_ = key
              val hashable : key Core_kernel.Core_hashtbl_intf.Hashable.t
              val create :
                ('a key_, 'b, unit -> ('a, 'b) t_)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val of_alist :
                ('a key_, 'b,
                 ('a key_ * 'b) list ->
                 [ `Duplicate_key of 'a key_ | `Ok of ('a, 'b) t_ ])
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val of_alist_report_all_dups :
                ('a key_, 'b,
                 ('a key_ * 'b) list ->
                 [ `Duplicate_keys of 'a key_ list | `Ok of ('a, 'b) t_ ])
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val of_alist_or_error :
                ('a key_, 'b,
                 ('a key_ * 'b) list -> ('a, 'b) t_ Core_kernel.Or_error.t)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val of_alist_exn :
                ('a key_, 'b, ('a key_ * 'b) list -> ('a, 'b) t_)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val of_alist_multi :
                ('a key_, 'b list, ('a key_ * 'b) list -> ('a, 'b list) t_)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val create_mapped :
                ('a key_, 'b,
                 get_key:('-> 'a key_) ->
                 get_data:('-> 'b) ->
                 'r list ->
                 [ `Duplicate_keys of 'a key_ list | `Ok of ('a, 'b) t_ ])
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val create_with_key :
                ('a key_, 'r,
                 get_key:('-> 'a key_) ->
                 'r list ->
                 [ `Duplicate_keys of 'a key_ list | `Ok of ('a, 'r) t_ ])
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val create_with_key_or_error :
                ('a key_, 'r,
                 get_key:('-> 'a key_) ->
                 'r list -> ('a, 'r) t_ Core_kernel.Or_error.t)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val create_with_key_exn :
                ('a key_, 'r,
                 get_key:('-> 'a key_) -> 'r list -> ('a, 'r) t_)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val group :
                ('a key_, 'b,
                 get_key:('-> 'a key_) ->
                 get_data:('-> 'b) ->
                 combine:('-> '-> 'b) -> 'r list -> ('a, 'b) t_)
                Core_kernel.Core_hashtbl_intf.create_options_without_hashable
              val sexp_of_key : ('a, 'b) t_ -> 'a key_ -> Sexplib.Sexp.t
              val clear : ('a, 'b) t_ -> unit
              val copy : ('a, 'b) t_ -> ('a, 'b) t_
              val invariant : ('a, 'b) t_ -> unit
              val fold :
                ('a, 'b) t_ ->
                init:'-> f:(key:'a key_ -> data:'-> '-> 'c) -> 'c
              val iter :
                ('a, 'b) t_ -> f:(key:'a key_ -> data:'-> unit) -> unit
              val existsi :
                ('a, 'b) t_ -> f:(key:'a key_ -> data:'-> bool) -> bool
              val exists : ('a, 'b) t_ -> f:('-> bool) -> bool
              val for_alli :
                ('a, 'b) t_ -> f:(key:'a key_ -> data:'-> bool) -> bool
              val for_all : ('a, 'b) t_ -> f:('-> bool) -> bool
              val length : ('a, 'b) t_ -> int
              val is_empty : ('a, 'b) t_ -> bool
              val mem : ('a, 'b) t_ -> 'a key_ -> bool
              val remove : ('a, 'b) t_ -> 'a key_ -> unit
              val remove_one : ('a, 'b list) t_ -> 'a key_ -> unit
              val replace : ('a, 'b) t_ -> key:'a key_ -> data:'-> unit
              val set : ('a, 'b) t_ -> key:'a key_ -> data:'-> unit
              val add :
                ('a, 'b) t_ -> key:'a key_ -> data:'-> [ `Duplicate | `Ok ]
              val add_or_error :
                ('a, 'b) t_ ->
                key:'a key_ -> data:'-> unit Core_kernel.Or_error.t
              val add_exn : ('a, 'b) t_ -> key:'a key_ -> data:'-> unit
              val change :
                ('a, 'b) t_ -> 'a key_ -> ('b option -> 'b option) -> unit
              val add_multi :
                ('a, 'b list) t_ -> key:'a key_ -> data:'-> unit
              val remove_multi : ('a, 'b list) t_ -> 'a key_ -> unit
              val map :
                ('c, ('a, 'b) t_ -> f:('-> 'c) -> ('a, 'c) t_)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val mapi :
                ('c,
                 ('a, 'b) t_ ->
                 f:(key:'a key_ -> data:'-> 'c) -> ('a, 'c) t_)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val filter_map :
                ('c, ('a, 'b) t_ -> f:('-> 'c option) -> ('a, 'c) t_)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val filter_mapi :
                ('c,
                 ('a, 'b) t_ ->
                 f:(key:'a key_ -> data:'-> 'c option) -> ('a, 'c) t_)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val filter : ('a, 'b) t_ -> f:('-> bool) -> ('a, 'b) t_
              val filteri :
                ('a, 'b) t_ ->
                f:(key:'a key_ -> data:'-> bool) -> ('a, 'b) t_
              val partition_map :
                ('c,
                 ('d,
                  ('a, 'b) t_ ->
                  f:('-> [ `Fst of '| `Snd of 'd ]) ->
                  ('a, 'c) t_ * ('a, 'd) t_)
                 Core_kernel.Core_hashtbl_intf.no_map_options)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val partition_mapi :
                ('c,
                 ('d,
                  ('a, 'b) t_ ->
                  f:(key:'a key_ -> data:'-> [ `Fst of '| `Snd of 'd ]) ->
                  ('a, 'c) t_ * ('a, 'd) t_)
                 Core_kernel.Core_hashtbl_intf.no_map_options)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val partition_tf :
                ('a, 'b) t_ -> f:('-> bool) -> ('a, 'b) t_ * ('a, 'b) t_
              val partitioni_tf :
                ('a, 'b) t_ ->
                f:(key:'a key_ -> data:'-> bool) ->
                ('a, 'b) t_ * ('a, 'b) t_
              val find_or_add :
                ('a, 'b) t_ -> 'a key_ -> default:(unit -> 'b) -> 'b
              val find : ('a, 'b) t_ -> 'a key_ -> 'b option
              val find_exn : ('a, 'b) t_ -> 'a key_ -> 'b
              val find_and_call :
                ('a, 'b) t_ ->
                'a key_ ->
                if_found:('-> 'c) -> if_not_found:('a key_ -> 'c) -> 'c
              val find_and_remove : ('a, 'b) t_ -> 'a key_ -> 'b option
              val iter_vals : ('a, 'b) t_ -> f:('-> unit) -> unit
              val merge :
                ('c,
                 ('k, 'a) t_ ->
                 ('k, 'b) t_ ->
                 f:(key:'k key_ ->
                    [ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                    'c option) ->
                 ('k, 'c) t_)
                Core_kernel.Core_hashtbl_intf.no_map_options
              val merge_into :
                f:(key:'a key_ -> '-> 'c option -> 'c option) ->
                src:('a, 'b) t_ -> dst:('a, 'c) t_ -> unit
              val keys : ('a, 'b) t_ -> 'a key_ list
              val data : ('a, 'b) t_ -> 'b list
              val filter_inplace : ('a, 'b) t_ -> f:('-> bool) -> unit
              val filteri_inplace :
                ('a, 'b) t_ -> f:('a key_ -> '-> bool) -> unit
              val equal :
                ('a, 'b) t_ -> ('a, 'b) t_ -> ('-> '-> bool) -> bool
              val similar :
                ('a, 'b1) t_ -> ('a, 'b2) t_ -> ('b1 -> 'b2 -> bool) -> bool
              val to_alist : ('a, 'b) t_ -> ('a key_ * 'b) list
              val validate :
                name:('a key_ -> string) ->
                'Core_kernel.Validate.check ->
                ('a, 'b) t_ Core_kernel.Validate.check
              val incr : ?by:int -> ('a, int) t_ -> 'a key_ -> unit
              val t_of_sexp :
                (Sexplib.Sexp.t -> 'b) -> Sexplib.Sexp.t -> 'b t
              val sexp_of_t :
                ('-> Sexplib.Sexp.t) -> 'b t -> Sexplib.Sexp.t
              val bin_size_t : ('a, 'a t) Bin_prot.Size.sizer1
              val bin_write_t : ('a, 'a t) Bin_prot.Write.writer1
              val bin_read_t : ('a, 'a t) Bin_prot.Read.reader1
              val __bin_read_t__ : ('a, int -> 'a t) Bin_prot.Read.reader1
              val bin_writer_t : ('a, 'a t) Bin_prot.Type_class.S1.writer
              val bin_reader_t : ('a, 'a t) Bin_prot.Type_class.S1.reader
              val bin_t : ('a, 'a t) Bin_prot.Type_class.S1.t
            end
          module Hash_set :
            sig
              type elt = t
              type 'a hash_set = 'Core_kernel.Hash_set.t
              type t = elt hash_set
              type 'a t_ = t
              type 'a elt_ = elt
              val create :
                ('a, unit -> 'a t_)
                Core_kernel.Hash_set_intf.create_options_without_hashable
              val of_list :
                ('a, 'a elt_ list -> 'a t_)
                Core_kernel.Hash_set_intf.create_options_without_hashable
              val t_of_sexp : Sexplib.Sexp.t -> t
              val sexp_of_t : t -> Sexplib.Sexp.t
              val bin_size_t : t Bin_prot.Size.sizer
              val bin_write_t : t Bin_prot.Write.writer
              val bin_read_t : t Bin_prot.Read.reader
              val __bin_read_t__ : (int -> t) Bin_prot.Read.reader
              val bin_writer_t : t Bin_prot.Type_class.writer
              val bin_reader_t : t Bin_prot.Type_class.reader
              val bin_t : t Bin_prot.Type_class.t
            end
          module Hash_queue :
            sig
              module Key :
                sig
                  type t = t
                  val hash : t -> int
                  val t_of_sexp : Sexplib.Sexp.t -> t
                  val sexp_of_t : t -> Sexplib.Sexp.t
                  val compare : t -> t -> int
                end
              type 'a t = 'Time.Zone.Hash_queue.t
              val length : 'a t -> int
              val is_empty : 'a t -> bool
              val iter : 'a t -> f:('-> unit) -> unit
              val fold :
                'a t -> init:'accum -> f:('accum -> '-> 'accum) -> 'accum
              val exists : 'a t -> f:('-> bool) -> bool
              val for_all : 'a t -> f:('-> bool) -> bool
              val count : 'a t -> f:('-> bool) -> int
              val sum :
                (module Core_kernel.Commutative_group.S with type t = 'sum) ->
                'a t -> f:('-> 'sum) -> 'sum
              val find : 'a t -> f:('-> bool) -> 'a option
              val find_map : 'a t -> f:('-> 'b option) -> 'b option
              val to_list : 'a t -> 'a list
              val to_array : 'a t -> 'a array
              val min_elt : 'a t -> cmp:('-> '-> int) -> 'a option
              val max_elt : 'a t -> cmp:('-> '-> int) -> 'a option
              val invariant : 'a t -> unit
              val create : ?growth_allowed:bool -> ?size:int -> 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 first : 'a t -> 'a option
              val first_with_key : 'a t -> (Key.t * 'a) option
              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
              val sexp_of_t :
                ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
            end
          val pp : Format.formatter -> t -> unit
          val t_of_sexp : Sexplib.Sexp.t -> t
          val sexp_of_t : t -> Sexplib.Sexp.t
          val bin_t : t Bin_prot.Type_class.t
          val bin_read_t : t Bin_prot.Read.reader
          val __bin_read_t__ : (int -> t) Bin_prot.Read.reader
          val bin_reader_t : t Bin_prot.Type_class.reader
          val bin_size_t : t Bin_prot.Size.sizer
          val bin_write_t : t Bin_prot.Write.writer
          val bin_writer_t : t Bin_prot.Type_class.writer
          val find : string -> t option
          val find_exn : string -> t
          val local : t
          val likely_machine_zones : string list ref
          val of_utc_offset : hours:int -> t
          val default_utc_offset_deprecated : t -> int
          val utc : t
          val abbreviation : t -> float -> string
          val name : t -> string
          val init : unit -> unit
          val digest : t -> string option
          val initialized_zones : unit -> (string * t) list
          val shift_epoch_time : t -> [ `Local | `UTC ] -> float -> float
          val next_clock_shift :
            t ->
            after:Time_internal.T.t -> (Time_internal.T.t * Span.t) option
          val prev_clock_shift :
            t ->
            before:Time_internal.T.t -> (Time_internal.T.t * Span.t) option
          exception Unknown_zone of string
          exception Invalid_file_format of string
          module Stable :
            sig
              module V1 :
                sig
                  type t = t
                  val t_of_sexp : Sexplib.Sexp.t -> t
                  val sexp_of_t : t -> Sexplib.Sexp.t
                  val compare : t -> t -> int
                  val bin_t : t Core_kernel.Std.Bin_prot.Type_class.t
                  val bin_read_t : t Core_kernel.Std.Bin_prot.Read.reader
                  val __bin_read_t__ :
                    (int -> t) Core_kernel.Std.Bin_prot.Read.reader
                  val bin_reader_t :
                    t Core_kernel.Std.Bin_prot.Type_class.reader
                  val bin_size_t : t Core_kernel.Std.Bin_prot.Size.sizer
                  val bin_write_t : t Core_kernel.Std.Bin_prot.Write.writer
                  val bin_writer_t :
                    t Core_kernel.Std.Bin_prot.Type_class.writer
                end
            end
        end
      type t = Time_internal.T.t
      val get_sexp_zone : unit -> Zone.t
      val set_sexp_zone : Zone.t -> unit
      val hash : t -> int
      val hashable : t Core_kernel.Hashable.Hashtbl.Hashable.t
      module Table :
        sig
          type key = t
          type ('a, 'b) hashtbl = ('a, 'b) Core_kernel.Hashable.Hashtbl.t
          type 'b t = (key, 'b) hashtbl
          type ('a, 'b) t_ = 'b t
          type 'a key_ = key
          val hashable : key Core_kernel.Core_hashtbl_intf.Hashable.t
          val create :
            ('a key_, 'b, unit -> ('a, 'b) t_)
            Core_kernel.Core_hashtbl_intf.create_options_without_hashable
          val of_alist :
            ('a key_, 'b,
             ('a key_ * 'b) list ->
             [ `Duplicate_key of 'a key_ | `Ok of ('a, 'b) t_ ])
            Core_kernel.Core_hashtbl_intf.create_options_without_hashable
          val of_alist_report_all_dups :
            ('a key_, 'b,
             ('a key_ * 'b) list ->
             [ `Duplicate_keys of 'a key_ list | `Ok of ('a, 'b) t_ ])
            Core_kernel.Core_hashtbl_intf.create_options_without_hashable
          val of_alist_or_error :
            ('a key_, 'b,
             ('a key_ * 'b) list -> ('a, 'b) t_ Core_kernel.Or_error.t)
            Core_kernel.Core_hashtbl_intf.create_options_without_hashable
          val of_alist_exn :
            ('a key_, 'b, ('a key_ * 'b) list -> ('a, 'b) t_)
            Core_kernel.Core_hashtbl_intf.create_options_without_hashable
          val of_alist_multi :
            ('a key_, 'b list, ('a key_ * 'b) list -> ('a, 'b list) t_)
            Core_kernel.Core_hashtbl_intf.create_options_without_hashable
          val create_mapped :
            ('a key_, 'b,
             get_key:('-> 'a key_) ->
             get_data:('-> 'b) ->
             'r list ->
             [ `Duplicate_keys of 'a key_ list | `Ok of ('a, 'b) t_ ])
            Core_kernel.Core_hashtbl_intf.create_options_without_hashable
          val create_with_key :
            ('a key_, 'r,
             get_key:('-> 'a key_) ->
             'r list ->
             [ `Duplicate_keys of 'a key_ list | `Ok of ('a, 'r) t_ ])
            Core_kernel.Core_hashtbl_intf.create_options_without_hashable
          val create_with_key_or_error :
            ('a key_, 'r,
             get_key:('-> 'a key_) ->
             'r list -> ('a, 'r) t_ Core_kernel.Or_error.t)
            Core_kernel.Core_hashtbl_intf.create_options_without_hashable
          val create_with_key_exn :
            ('a key_, 'r, get_key:('-> 'a key_) -> 'r list -> ('a, 'r) t_)
            Core_kernel.Core_hashtbl_intf.create_options_without_hashable
          val group :
            ('a key_, 'b,
             get_key:('-> 'a key_) ->
             get_data:('-> 'b) ->
             combine:('-> '-> 'b) -> 'r list -> ('a, 'b) t_)
            Core_kernel.Core_hashtbl_intf.create_options_without_hashable
          val sexp_of_key : ('a, 'b) t_ -> 'a key_ -> Sexplib.Sexp.t
          val clear : ('a, 'b) t_ -> unit
          val copy : ('a, 'b) t_ -> ('a, 'b) t_
          val invariant : ('a, 'b) t_ -> unit
          val fold :
            ('a, 'b) t_ ->
            init:'-> f:(key:'a key_ -> data:'-> '-> 'c) -> 'c
          val iter :
            ('a, 'b) t_ -> f:(key:'a key_ -> data:'-> unit) -> unit
          val existsi :
            ('a, 'b) t_ -> f:(key:'a key_ -> data:'-> bool) -> bool
          val exists : ('a, 'b) t_ -> f:('-> bool) -> bool
          val for_alli :
            ('a, 'b) t_ -> f:(key:'a key_ -> data:'-> bool) -> bool
          val for_all : ('a, 'b) t_ -> f:('-> bool) -> bool
          val length : ('a, 'b) t_ -> int
          val is_empty : ('a, 'b) t_ -> bool
          val mem : ('a, 'b) t_ -> 'a key_ -> bool
          val remove : ('a, 'b) t_ -> 'a key_ -> unit
          val remove_one : ('a, 'b list) t_ -> 'a key_ -> unit
          val replace : ('a, 'b) t_ -> key:'a key_ -> data:'-> unit
          val set : ('a, 'b) t_ -> key:'a key_ -> data:'-> unit
          val add :
            ('a, 'b) t_ -> key:'a key_ -> data:'-> [ `Duplicate | `Ok ]
          val add_or_error :
            ('a, 'b) t_ ->
            key:'a key_ -> data:'-> unit Core_kernel.Or_error.t
          val add_exn : ('a, 'b) t_ -> key:'a key_ -> data:'-> unit
          val change :
            ('a, 'b) t_ -> 'a key_ -> ('b option -> 'b option) -> unit
          val add_multi : ('a, 'b list) t_ -> key:'a key_ -> data:'-> unit
          val remove_multi : ('a, 'b list) t_ -> 'a key_ -> unit
          val map :
            ('c, ('a, 'b) t_ -> f:('-> 'c) -> ('a, 'c) t_)
            Core_kernel.Core_hashtbl_intf.no_map_options
          val mapi :
            ('c,
             ('a, 'b) t_ -> f:(key:'a key_ -> data:'-> 'c) -> ('a, 'c) t_)
            Core_kernel.Core_hashtbl_intf.no_map_options
          val filter_map :
            ('c, ('a, 'b) t_ -> f:('-> 'c option) -> ('a, 'c) t_)
            Core_kernel.Core_hashtbl_intf.no_map_options
          val filter_mapi :
            ('c,
             ('a, 'b) t_ ->
             f:(key:'a key_ -> data:'-> 'c option) -> ('a, 'c) t_)
            Core_kernel.Core_hashtbl_intf.no_map_options
          val filter : ('a, 'b) t_ -> f:('-> bool) -> ('a, 'b) t_
          val filteri :
            ('a, 'b) t_ -> f:(key:'a key_ -> data:'-> bool) -> ('a, 'b) t_
          val partition_map :
            ('c,
             ('d,
              ('a, 'b) t_ ->
              f:('-> [ `Fst of '| `Snd of 'd ]) ->
              ('a, 'c) t_ * ('a, 'd) t_)
             Core_kernel.Core_hashtbl_intf.no_map_options)
            Core_kernel.Core_hashtbl_intf.no_map_options
          val partition_mapi :
            ('c,
             ('d,
              ('a, 'b) t_ ->
              f:(key:'a key_ -> data:'-> [ `Fst of '| `Snd of 'd ]) ->
              ('a, 'c) t_ * ('a, 'd) t_)
             Core_kernel.Core_hashtbl_intf.no_map_options)
            Core_kernel.Core_hashtbl_intf.no_map_options
          val partition_tf :
            ('a, 'b) t_ -> f:('-> bool) -> ('a, 'b) t_ * ('a, 'b) t_
          val partitioni_tf :
            ('a, 'b) t_ ->
            f:(key:'a key_ -> data:'-> bool) -> ('a, 'b) t_ * ('a, 'b) t_
          val find_or_add :
            ('a, 'b) t_ -> 'a key_ -> default:(unit -> 'b) -> 'b
          val find : ('a, 'b) t_ -> 'a key_ -> 'b option
          val find_exn : ('a, 'b) t_ -> 'a key_ -> 'b
          val find_and_call :
            ('a, 'b) t_ ->
            'a key_ ->
            if_found:('-> 'c) -> if_not_found:('a key_ -> 'c) -> 'c
          val find_and_remove : ('a, 'b) t_ -> 'a key_ -> 'b option
          val iter_vals : ('a, 'b) t_ -> f:('-> unit) -> unit
          val merge :
            ('c,
             ('k, 'a) t_ ->
             ('k, 'b) t_ ->
             f:(key:'k key_ ->
                [ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                'c option) ->
             ('k, 'c) t_)
            Core_kernel.Core_hashtbl_intf.no_map_options
          val merge_into :
            f:(key:'a key_ -> '-> 'c option -> 'c option) ->
            src:('a, 'b) t_ -> dst:('a, 'c) t_ -> unit
          val keys : ('a, 'b) t_ -> 'a key_ list
          val data : ('a, 'b) t_ -> 'b list
          val filter_inplace : ('a, 'b) t_ -> f:('-> bool) -> unit
          val filteri_inplace :
            ('a, 'b) t_ -> f:('a key_ -> '-> bool) -> unit
          val equal :
            ('a, 'b) t_ -> ('a, 'b) t_ -> ('-> '-> bool) -> bool
          val similar :
            ('a, 'b1) t_ -> ('a, 'b2) t_ -> ('b1 -> 'b2 -> bool) -> bool
          val to_alist : ('a, 'b) t_ -> ('a key_ * 'b) list
          val validate :
            name:('a key_ -> string) ->
            'Core_kernel.Validate.check ->
            ('a, 'b) t_ Core_kernel.Validate.check
          val incr : ?by:int -> ('a, int) t_ -> 'a key_ -> unit
          val t_of_sexp : (Sexplib.Sexp.t -> 'b) -> Sexplib.Sexp.t -> 'b t
          val sexp_of_t : ('-> Sexplib.Sexp.t) -> 'b t -> Sexplib.Sexp.t
          val bin_size_t : ('a, 'a t) Bin_prot.Size.sizer1
          val bin_write_t : ('a, 'a t) Bin_prot.Write.writer1
          val bin_read_t : ('a, 'a t) Bin_prot.Read.reader1
          val __bin_read_t__ : ('a, int -> 'a t) Bin_prot.Read.reader1
          val bin_writer_t : ('a, 'a t) Bin_prot.Type_class.S1.writer
          val bin_reader_t : ('a, 'a t) Bin_prot.Type_class.S1.reader
          val bin_t : ('a, 'a t) Bin_prot.Type_class.S1.t
        end
      module Hash_set :
        sig
          type elt = t
          type 'a hash_set = 'Core_kernel.Hash_set.t
          type t = elt hash_set
          type 'a t_ = t
          type 'a elt_ = elt
          val create :
            ('a, unit -> 'a t_)
            Core_kernel.Hash_set_intf.create_options_without_hashable
          val of_list :
            ('a, 'a elt_ list -> 'a t_)
            Core_kernel.Hash_set_intf.create_options_without_hashable
          val t_of_sexp : Sexplib.Sexp.t -> t
          val sexp_of_t : t -> Sexplib.Sexp.t
          val bin_size_t : t Bin_prot.Size.sizer
          val bin_write_t : t Bin_prot.Write.writer
          val bin_read_t : t Bin_prot.Read.reader
          val __bin_read_t__ : (int -> t) Bin_prot.Read.reader
          val bin_writer_t : t Bin_prot.Type_class.writer
          val bin_reader_t : t Bin_prot.Type_class.reader
          val bin_t : t Bin_prot.Type_class.t
        end
      module Hash_queue :
        sig
          module Key :
            sig
              type t = t
              val hash : t -> int
              val t_of_sexp : Sexplib.Sexp.t -> t
              val sexp_of_t : t -> Sexplib.Sexp.t
              val compare : t -> t -> int
            end
          type 'a t = 'Time.Hash_queue.t
          val length : 'a t -> int
          val is_empty : 'a t -> bool
          val iter : 'a t -> f:('-> unit) -> unit
          val fold :
            'a t -> init:'accum -> f:('accum -> '-> 'accum) -> 'accum
          val exists : 'a t -> f:('-> bool) -> bool
          val for_all : 'a t -> f:('-> bool) -> bool
          val count : 'a t -> f:('-> bool) -> int
          val sum :
            (module Core_kernel.Commutative_group.S with type t = 'sum) ->
            'a t -> f:('-> 'sum) -> 'sum
          val find : 'a t -> f:('-> bool) -> 'a option
          val find_map : 'a t -> f:('-> 'b option) -> 'b option
          val to_list : 'a t -> 'a list
          val to_array : 'a t -> 'a array
          val min_elt : 'a t -> cmp:('-> '-> int) -> 'a option
          val max_elt : 'a t -> cmp:('-> '-> int) -> 'a option
          val invariant : 'a t -> unit
          val create : ?growth_allowed:bool -> ?size:int -> 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 first : 'a t -> 'a option
          val first_with_key : 'a t -> (Key.t * 'a) option
          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
          val sexp_of_t : ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
        end
      val ( >= ) : t -> t -> bool
      val ( <= ) : t -> t -> bool
      val ( = ) : t -> t -> bool
      val ( > ) : t -> t -> bool
      val ( < ) : t -> t -> bool
      val ( <> ) : t -> t -> bool
      val equal : t -> t -> bool
      val compare : t -> t -> int
      val min : t -> t -> t
      val max : t -> t -> t
      val ascending : t -> t -> int
      val descending : t -> t -> int
      val between : t -> low:t -> high:t -> bool
      module Replace_polymorphic_compare :
        sig
          val ( >= ) : t -> t -> bool
          val ( <= ) : t -> t -> bool
          val ( = ) : t -> t -> bool
          val ( > ) : t -> t -> bool
          val ( < ) : t -> t -> bool
          val ( <> ) : t -> t -> bool
          val equal : t -> t -> bool
          val compare : t -> t -> int
          val min : t -> t -> t
          val max : t -> t -> t
          val _squelch_unused_module_warning_ : unit
        end
      type comparator_witness = Time.comparator_witness
      val validate_lbound :
        min:t Core_kernel.Comparable_intf.bound ->
        t Core_kernel.Validate.check
      val validate_ubound :
        max:t Core_kernel.Comparable_intf.bound ->
        t Core_kernel.Validate.check
      val validate_bound :
        min:t Core_kernel.Comparable_intf.bound ->
        max:t Core_kernel.Comparable_intf.bound ->
        t Core_kernel.Validate.check
      val comparator :
        (t, comparator_witness) Core_kernel.Comparator.comparator
      module Map :
        sig
          module Key :
            sig
              type t = t
              type comparator_witness = comparator_witness
              val comparator :
                (t, comparator_witness) Core_kernel.Comparator.comparator
            end
          module Tree :
            sig
              type 'a t =
                  (Key.t, 'a, Key.comparator_witness)
                  Core_kernel.Core_map.Tree.t
              val empty : 'a t
              val singleton : Key.t -> '-> 'a t
              val of_alist :
                (Key.t * 'a) list ->
                [ `Duplicate_key of Key.t | `Ok of 'a t ]
              val of_alist_or_error :
                (Key.t * 'a) list -> 'a t Core_kernel.Or_error.t
              val of_alist_exn : (Key.t * 'a) list -> 'a t
              val of_alist_multi : (Key.t * 'a) list -> 'a list t
              val of_alist_fold :
                (Key.t * 'a) list -> init:'-> f:('-> '-> 'b) -> 'b t
              val of_alist_reduce :
                (Key.t * 'a) list -> f:('-> '-> 'a) -> 'a t
              val of_sorted_array :
                (Key.t * 'a) array -> 'a t Core_kernel.Or_error.t
              val of_sorted_array_unchecked : (Key.t * 'a) array -> 'a t
              val of_tree : 'a t -> 'a t
              val invariants : 'a t -> bool
              val is_empty : 'a t -> bool
              val length : 'a t -> int
              val add : 'a t -> key:Key.t -> data:'-> 'a t
              val add_multi : 'a list t -> key:Key.t -> data:'-> 'a list t
              val change : 'a t -> Key.t -> ('a option -> 'a option) -> 'a t
              val find : 'a t -> Key.t -> 'a option
              val find_exn : 'a t -> Key.t -> 'a
              val remove : 'a t -> Key.t -> 'a t
              val mem : 'a t -> Key.t -> bool
              val iter : 'a t -> f:(key:Key.t -> data:'-> unit) -> unit
              val iter2 :
                'a t ->
                'b t ->
                f:(key:Key.t ->
                   data:[ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                   unit) ->
                unit
              val map : 'a t -> f:('-> 'b) -> 'b t
              val mapi : 'a t -> f:(key:Key.t -> data:'-> 'b) -> 'b t
              val fold :
                'a t -> init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
              val fold_right :
                'a t -> init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
              val filter : 'a t -> f:(key:Key.t -> data:'-> bool) -> 'a t
              val filter_map : 'a t -> f:('-> 'b option) -> 'b t
              val filter_mapi :
                'a t -> f:(key:Key.t -> data:'-> 'b option) -> 'b t
              val compare_direct : ('-> '-> int) -> 'a t -> 'a t -> int
              val equal : ('-> '-> bool) -> 'a t -> 'a t -> bool
              val keys : 'a t -> Key.t list
              val data : 'a t -> 'a list
              val to_alist : 'a t -> (Key.t * 'a) list
              val validate :
                name:(Key.t -> string) ->
                'Core_kernel.Validate.check ->
                'a t Core_kernel.Validate.check
              val merge :
                'a t ->
                'b t ->
                f:(key:Key.t ->
                   [ `Both of 'a * '| `Left of '| `Right of 'b ] ->
                   'c option) ->
                'c t
              val symmetric_diff :
                'a t ->
                'a t ->
                data_equal:('-> '-> bool) ->
                (Key.t * [ `Left of '| `Right of '| `Unequal of 'a * 'a ])
                Core_kernel.Sequence.t
              val min_elt : 'a t -> (Key.t * 'a) option
              val min_elt_exn : 'a t -> Key.t * 'a
              val max_elt : 'a t -> (Key.t * 'a) option
              val max_elt_exn : 'a t -> Key.t * 'a
              val for_all : 'a t -> f:('-> bool) -> bool
              val exists : 'a t -> f:('-> bool) -> bool
              val split : 'a t -> Key.t -> 'a t * (Key.t * 'a) option * 'a t
              val fold_range_inclusive :
                'a t ->
                min:Key.t ->
                max:Key.t ->
                init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
              val range_to_alist :
                'a t -> min:Key.t -> max:Key.t -> (Key.t * 'a) list
              val closest_key :
                'a t ->
                [ `Greater_or_equal_to
                | `Greater_than
                | `Less_or_equal_to
                | `Less_than ] -> Key.t -> (Key.t * 'a) option
              val nth : 'a t -> int -> (Key.t * 'a) option
              val rank : 'a t -> Key.t -> int option
              val to_tree : 'a t -> 'a t
              val to_sequence :
                ?order:[ `Decreasing_key | `Increasing_key ] ->
                ?keys_greater_or_equal_to:Key.t ->
                ?keys_less_or_equal_to:Key.t ->
                'a t -> (Key.t * 'a) Core_kernel.Sequence.t
              val t_of_sexp :
                (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a t
              val sexp_of_t :
                ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
            end
          type 'a t =
              (Key.t, 'a, Key.comparator_witness) Core_kernel.Core_map.t
          val empty : 'a t
          val singleton : Key.t -> '-> 'a t
          val of_alist :
            (Key.t * 'a) list -> [ `Duplicate_key of Key.t | `Ok of 'a t ]
          val of_alist_or_error :
            (Key.t * 'a) list -> 'a t Core_kernel.Or_error.t
          val of_alist_exn : (Key.t * 'a) list -> 'a t
          val of_alist_multi : (Key.t * 'a) list -> 'a list t
          val of_alist_fold :
            (Key.t * 'a) list -> init:'-> f:('-> '-> 'b) -> 'b t
          val of_alist_reduce :
            (Key.t * 'a) list -> f:('-> '-> 'a) -> 'a t
          val of_sorted_array :
            (Key.t * 'a) array -> 'a t Core_kernel.Or_error.t
          val of_sorted_array_unchecked : (Key.t * 'a) array -> 'a t
          val of_tree : 'Tree.t -> 'a t
          val invariants : 'a t -> bool
          val is_empty : 'a t -> bool
          val length : 'a t -> int
          val add : 'a t -> key:Key.t -> data:'-> 'a t
          val add_multi : 'a list t -> key:Key.t -> data:'-> 'a list t
          val change : 'a t -> Key.t -> ('a option -> 'a option) -> 'a t
          val find : 'a t -> Key.t -> 'a option
          val find_exn : 'a t -> Key.t -> 'a
          val remove : 'a t -> Key.t -> 'a t
          val mem : 'a t -> Key.t -> bool
          val iter : 'a t -> f:(key:Key.t -> data:'-> unit) -> unit
          val iter2 :
            'a t ->
            'b t ->
            f:(key:Key.t ->
               data:[ `Both of 'a * '| `Left of '| `Right of 'b ] -> unit) ->
            unit
          val map : 'a t -> f:('-> 'b) -> 'b t
          val mapi : 'a t -> f:(key:Key.t -> data:'-> 'b) -> 'b t
          val fold :
            'a t -> init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
          val fold_right :
            'a t -> init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
          val filter : 'a t -> f:(key:Key.t -> data:'-> bool) -> 'a t
          val filter_map : 'a t -> f:('-> 'b option) -> 'b t
          val filter_mapi :
            'a t -> f:(key:Key.t -> data:'-> 'b option) -> 'b t
          val compare_direct : ('-> '-> int) -> 'a t -> 'a t -> int
          val equal : ('-> '-> bool) -> 'a t -> 'a t -> bool
          val keys : 'a t -> Key.t list
          val data : 'a t -> 'a list
          val to_alist : 'a t -> (Key.t * 'a) list
          val validate :
            name:(Key.t -> string) ->
            'Core_kernel.Validate.check -> 'a t Core_kernel.Validate.check
          val merge :
            'a t ->
            'b t ->
            f:(key:Key.t ->
               [ `Both of 'a * '| `Left of '| `Right of 'b ] -> 'c option) ->
            'c t
          val symmetric_diff :
            'a t ->
            'a t ->
            data_equal:('-> '-> bool) ->
            (Key.t * [ `Left of '| `Right of '| `Unequal of 'a * 'a ])
            Core_kernel.Sequence.t
          val min_elt : 'a t -> (Key.t * 'a) option
          val min_elt_exn : 'a t -> Key.t * 'a
          val max_elt : 'a t -> (Key.t * 'a) option
          val max_elt_exn : 'a t -> Key.t * 'a
          val for_all : 'a t -> f:('-> bool) -> bool
          val exists : 'a t -> f:('-> bool) -> bool
          val split : 'a t -> Key.t -> 'a t * (Key.t * 'a) option * 'a t
          val fold_range_inclusive :
            'a t ->
            min:Key.t ->
            max:Key.t ->
            init:'-> f:(key:Key.t -> data:'-> '-> 'b) -> 'b
          val range_to_alist :
            'a t -> min:Key.t -> max:Key.t -> (Key.t * 'a) list
          val closest_key :
            'a t ->
            [ `Greater_or_equal_to
            | `Greater_than
            | `Less_or_equal_to
            | `Less_than ] -> Key.t -> (Key.t * 'a) option
          val nth : 'a t -> int -> (Key.t * 'a) option
          val rank : 'a t -> Key.t -> int option
          val to_tree : 'a t -> 'Tree.t
          val to_sequence :
            ?order:[ `Decreasing_key | `Increasing_key ] ->
            ?keys_greater_or_equal_to:Key.t ->
            ?keys_less_or_equal_to:Key.t ->
            'a t -> (Key.t * 'a) Core_kernel.Sequence.t
          val t_of_sexp : (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'a t
          val sexp_of_t : ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
          val compare : ('-> '-> int) -> 'a t -> 'a t -> int
          val bin_size_t : ('a, 'a t) Bin_prot.Size.sizer1
          val bin_write_t : ('a, 'a t) Bin_prot.Write.writer1
          val bin_read_t : ('a, 'a t) Bin_prot.Read.reader1
          val __bin_read_t__ : ('a, int -> 'a t) Bin_prot.Read.reader1
          val bin_writer_t : ('a, 'a t) Bin_prot.Type_class.S1.writer
          val bin_reader_t : ('a, 'a t) Bin_prot.Type_class.S1.reader
          val bin_t : ('a, 'a t) Bin_prot.Type_class.S1.t
        end
      module Set :
        sig
          module Elt :
            sig
              type t = t
              type comparator_witness = comparator_witness
              val comparator :
                (t, comparator_witness) Core_kernel.Comparator.comparator
              val t_of_sexp : Sexplib.Sexp.t -> t
              val sexp_of_t : t -> Sexplib.Sexp.t
            end
          module Tree :
            sig
              type t =
                  (Elt.t, Elt.comparator_witness) Core_kernel.Core_set.Tree.t
              val length : t -> int
              val is_empty : t -> bool
              val iter : t -> f:(Elt.t -> unit) -> unit
              val fold :
                t -> init:'accum -> f:('accum -> Elt.t -> 'accum) -> 'accum
              val exists : t -> f:(Elt.t -> bool) -> bool
              val for_all : t -> f:(Elt.t -> bool) -> bool
              val count : t -> f:(Elt.t -> bool) -> int
              val sum :
                (module Core_kernel.Commutative_group.S with type t = 'sum) ->
                t -> f:(Elt.t -> 'sum) -> 'sum
              val find : t -> f:(Elt.t -> bool) -> Elt.t option
              val find_map : t -> f:(Elt.t -> 'a option) -> 'a option
              val to_list : t -> Elt.t list
              val to_array : t -> Elt.t array
              val invariants : t -> bool
              val mem : t -> Elt.t -> bool
              val add : t -> Elt.t -> t
              val remove : t -> Elt.t -> t
              val union : t -> t -> t
              val inter : t -> t -> t
              val diff : t -> t -> t
              val symmetric_diff :
                t ->
                t ->
                (Elt.t, Elt.t) Core_kernel.Either.t Core_kernel.Sequence.t
              val compare_direct : t -> t -> int
              val equal : t -> t -> bool
              val subset : t -> t -> bool
              val fold_until :
                t ->
                init:'->
                f:('-> Elt.t -> [ `Continue of '| `Stop of 'b ]) -> 'b
              val fold_right : t -> init:'-> f:(Elt.t -> '-> 'b) -> 'b
              val iter2 :
                t ->
                t ->
                f:([ `Both of Elt.t * Elt.t
                   | `Left of Elt.t
                   | `Right of Elt.t ] -> unit) ->
                unit
              val filter : t -> f:(Elt.t -> bool) -> t
              val partition_tf : t -> f:(Elt.t -> bool) -> t * t
              val elements : t -> Elt.t list
              val min_elt : t -> Elt.t option
              val min_elt_exn : t -> Elt.t
              val max_elt : t -> Elt.t option
              val max_elt_exn : t -> Elt.t
              val choose : t -> Elt.t option
              val choose_exn : t -> Elt.t
              val split : t -> Elt.t -> t * Elt.t option * t
              val group_by : t -> equiv:(Elt.t -> Elt.t -> bool) -> t list
              val find_exn : t -> f:(Elt.t -> bool) -> Elt.t
              val find_index : t -> int -> Elt.t option
              val remove_index : t -> int -> t
              val to_tree : t -> t
              val to_sequence :
                ?order:[ `Decreasing | `Increasing ] ->
                ?greater_or_equal_to:Elt.t ->
                ?less_or_equal_to:Elt.t -> t -> Elt.t Core_kernel.Sequence.t
              val to_map :
                t ->
                f:(Elt.t -> 'data) ->
                (Elt.t, 'data, Elt.comparator_witness)
                Core_kernel.Core_set_intf.Map.t
              val empty : t
              val singleton : Elt.t -> t
              val union_list : t list -> t
              val of_list : Elt.t list -> t
              val of_array : Elt.t array -> t
              val of_sorted_array : Elt.t array -> t Core_kernel.Or_error.t
              val of_sorted_array_unchecked : Elt.t array -> t
              val stable_dedup_list : Elt.t list -> Elt.t list
              val map :
                ('a, 'b) Core_kernel.Core_set.Tree.t -> f:('-> Elt.t) -> t
              val filter_map :
                ('a, 'b) Core_kernel.Core_set.Tree.t ->
                f:('-> Elt.t option) -> t
              val of_tree : t -> t
              val of_map_keys :
                (Elt.t, 'a, Elt.comparator_witness)
                Core_kernel.Core_set_intf.Map.t -> t
              val t_of_sexp : Sexplib.Sexp.t -> t
              val sexp_of_t : t -> Sexplib.Sexp.t
              val compare : t -> t -> int
            end
          type t = (Elt.t, Elt.comparator_witness) Core_kernel.Core_set.t
          val length : t -> int
          val is_empty : t -> bool
          val iter : t -> f:(Elt.t -> unit) -> unit
          val fold :
            t -> init:'accum -> f:('accum -> Elt.t -> 'accum) -> 'accum
          val exists : t -> f:(Elt.t -> bool) -> bool
          val for_all : t -> f:(Elt.t -> bool) -> bool
          val count : t -> f:(Elt.t -> bool) -> int
          val sum :
            (module Core_kernel.Commutative_group.S with type t = 'sum) ->
            t -> f:(Elt.t -> 'sum) -> 'sum
          val find : t -> f:(Elt.t -> bool) -> Elt.t option
          val find_map : t -> f:(Elt.t -> 'a option) -> 'a option
          val to_list : t -> Elt.t list
          val to_array : t -> Elt.t array
          val invariants : t -> bool
          val mem : t -> Elt.t -> bool
          val add : t -> Elt.t -> t
          val remove : t -> Elt.t -> t
          val union : t -> t -> t
          val inter : t -> t -> t
          val diff : t -> t -> t
          val symmetric_diff :
            t ->
            t -> (Elt.t, Elt.t) Core_kernel.Either.t Core_kernel.Sequence.t
          val compare_direct : t -> t -> int
          val equal : t -> t -> bool
          val subset : t -> t -> bool
          val fold_until :
            t ->
            init:'->
            f:('-> Elt.t -> [ `Continue of '| `Stop of 'b ]) -> 'b
          val fold_right : t -> init:'-> f:(Elt.t -> '-> 'b) -> 'b
          val iter2 :
            t ->
            t ->
            f:([ `Both of Elt.t * Elt.t | `Left of Elt.t | `Right of Elt.t ] ->
               unit) ->
            unit
          val filter : t -> f:(Elt.t -> bool) -> t
          val partition_tf : t -> f:(Elt.t -> bool) -> t * t
          val elements : t -> Elt.t list
          val min_elt : t -> Elt.t option
          val min_elt_exn : t -> Elt.t
          val max_elt : t -> Elt.t option
          val max_elt_exn : t -> Elt.t
          val choose : t -> Elt.t option
          val choose_exn : t -> Elt.t
          val split : t -> Elt.t -> t * Elt.t option * t
          val group_by : t -> equiv:(Elt.t -> Elt.t -> bool) -> t list
          val find_exn : t -> f:(Elt.t -> bool) -> Elt.t
          val find_index : t -> int -> Elt.t option
          val remove_index : t -> int -> t
          val to_tree : t -> Tree.t
          val to_sequence :
            ?order:[ `Decreasing | `Increasing ] ->
            ?greater_or_equal_to:Elt.t ->
            ?less_or_equal_to:Elt.t -> t -> Elt.t Core_kernel.Sequence.t
          val to_map :
            t ->
            f:(Elt.t -> 'data) ->
            (Elt.t, 'data, Elt.comparator_witness)
            Core_kernel.Core_set_intf.Map.t
          val empty : t
          val singleton : Elt.t -> t
          val union_list : t list -> t
          val of_list : Elt.t list -> t
          val of_array : Elt.t array -> t
          val of_sorted_array : Elt.t array -> t Core_kernel.Or_error.t
          val of_sorted_array_unchecked : Elt.t array -> t
          val stable_dedup_list : Elt.t list -> Elt.t list
          val map : ('a, 'b) Core_kernel.Core_set.t -> f:('-> Elt.t) -> t
          val filter_map :
            ('a, 'b) Core_kernel.Core_set.t -> f:('-> Elt.t option) -> t
          val of_tree : Tree.t -> t
          val of_map_keys :
            (Elt.t, 'a, Elt.comparator_witness)
            Core_kernel.Core_set_intf.Map.t -> t
          val t_of_sexp : Sexplib.Sexp.t -> t
          val sexp_of_t : t -> Sexplib.Sexp.t
          val compare : t -> t -> int
          val bin_size_t : t Bin_prot.Size.sizer
          val bin_write_t : t Bin_prot.Write.writer
          val bin_read_t : t Bin_prot.Read.reader
          val __bin_read_t__ : (int -> t) Bin_prot.Read.reader
          val bin_writer_t : t Bin_prot.Type_class.writer
          val bin_reader_t : t Bin_prot.Type_class.reader
          val bin_t : t Bin_prot.Type_class.t
        end
      val ( >=. ) : t -> t -> bool
      val ( <=. ) : t -> t -> bool
      val ( =. ) : t -> t -> bool
      val ( >. ) : t -> t -> bool
      val ( <. ) : t -> t -> bool
      val ( <>. ) : t -> t -> bool
      val robustly_compare : t -> t -> int
      val of_float : float -> t
      val to_float : t -> float
      val pp : Format.formatter -> t -> unit
      val of_string : string -> t
      val to_string : t -> string
      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 is_earlier : t -> than:t -> bool
      val is_later : t -> than:t -> bool
      val of_date_ofday : Date0.t -> Ofday.t -> zone:Zone.t -> t
      val to_date_ofday : t -> zone:Zone.t -> Date0.t * Ofday.t
      val to_date : t -> zone:Zone.t -> Date0.t
      val to_ofday : t -> zone:Zone.t -> Ofday.t
      val of_date_ofday_precise :
        Date0.t ->
        Ofday.t ->
        zone:Zone.t -> [ `Never of t | `Once of t | `Twice of t * t ]
      val convert :
        from_tz:Zone.t ->
        to_tz:Zone.t -> Date0.t -> Ofday.t -> Date0.t * Ofday.t
      val utc_offset : t -> zone:Zone.t -> Span.t
      val to_filename_string : t -> zone:Zone.t -> string
      val of_filename_string : string -> zone:Zone.t -> t
      val to_string_fix_proto : [ `Local | `Utc ] -> t -> string
      val of_string_fix_proto : [ `Local | `Utc ] -> string -> t
      val to_string_trimmed : t -> zone:Zone.t -> string
      val to_sec_string : t -> zone:Zone.t -> string
      val of_localized_string : zone:Zone.t -> string -> t
      val to_string_abs : t -> zone:Zone.t -> string
      val to_string_abs_trimmed : t -> zone:Zone.t -> string
      val of_string_abs : string -> t
      val t_of_sexp_abs : Core_kernel.Std.Sexp.t -> t
      val now : unit -> t
      val pause : Span.t -> unit
      val interruptible_pause : Span.t -> [ `Ok | `Remaining of Span.t ]
      val pause_forever : unit -> Core_kernel.Std.never_returns
      val occurrence :
        [ `First_after_or_at | `Last_before_or_at ] ->
        t -> ofday:Ofday.t -> zone:Zone.t -> t
      val format : t -> string -> string
      val to_epoch : t -> float
      val next_multiple :
        ?can_equal_after:bool ->
        base:t -> after:t -> interval:Span.t -> unit -> t
      module Stable :
        sig
          module V1 :
            sig
              type t = t
              val compare : t -> t -> int
              val t_of_sexp : Sexplib.Sexp.t -> t
              val sexp_of_t : t -> Sexplib.Sexp.t
              val bin_t : t Core_kernel.Std.Bin_prot.Type_class.t
              val bin_read_t : t Core_kernel.Std.Bin_prot.Read.reader
              val __bin_read_t__ :
                (int -> t) Core_kernel.Std.Bin_prot.Read.reader
              val bin_reader_t : t Core_kernel.Std.Bin_prot.Type_class.reader
              val bin_size_t : t Core_kernel.Std.Bin_prot.Size.sizer
              val bin_write_t : t Core_kernel.Std.Bin_prot.Write.writer
              val bin_writer_t : t Core_kernel.Std.Bin_prot.Type_class.writer
            end
          module With_utc_sexp :
            sig
              module V1 :
                sig
                  type t = t
                  val compare : t -> t -> int
                  val t_of_sexp : Sexplib.Sexp.t -> t
                  val sexp_of_t : t -> Sexplib.Sexp.t
                  val bin_t : t Core_kernel.Std.Bin_prot.Type_class.t
                  val bin_read_t : t Core_kernel.Std.Bin_prot.Read.reader
                  val __bin_read_t__ :
                    (int -> t) Core_kernel.Std.Bin_prot.Read.reader
                  val bin_reader_t :
                    t Core_kernel.Std.Bin_prot.Type_class.reader
                  val bin_size_t : t Core_kernel.Std.Bin_prot.Size.sizer
                  val bin_write_t : t Core_kernel.Std.Bin_prot.Write.writer
                  val bin_writer_t :
                    t Core_kernel.Std.Bin_prot.Type_class.writer
                end
            end
        end
      val t_of_sexp : Sexplib.Sexp.t -> t
      val sexp_of_t : t -> Sexplib.Sexp.t
      val bin_t : t Core_kernel.Std.Bin_prot.Type_class.t
      val bin_read_t : t Core_kernel.Std.Bin_prot.Read.reader
      val __bin_read_t__ : (int -> t) Core_kernel.Std.Bin_prot.Read.reader
      val bin_reader_t : t Core_kernel.Std.Bin_prot.Type_class.reader
      val bin_size_t : t Core_kernel.Std.Bin_prot.Size.sizer
      val bin_write_t : t Core_kernel.Std.Bin_prot.Write.writer
      val bin_writer_t : t Core_kernel.Std.Bin_prot.Type_class.writer
    end
  type 'a t
  type 'a timing_wheel = 'a t
  type 'a t_now = 'a t
  module Interval_num : Core_kernel.Timing_wheel_intf.Interval_num
  module Alarm :
    sig
      type 'a t
      val null : unit -> 'a t
      val at : 'a timing_wheel -> 'a t -> Time.t
      val interval_num : 'a timing_wheel -> 'a t -> Interval_num.t
      val value : 'a timing_wheel -> 'a t -> 'a
      val sexp_of_t : ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
    end
  val invariant :
    'Core_kernel.Invariant_intf.inv -> 'a t Core_kernel.Invariant_intf.inv
  module Level_bits :
    sig
      type t
      val invariant : t Core_kernel.Invariant_intf.inv
      val max_num_bits : int
      val create_exn : int list -> t
      val default : t
      val num_bits : t -> int
      val t_of_sexp : Sexplib.Sexp.t -> t
      val sexp_of_t : t -> Sexplib.Sexp.t
    end
  module Config :
    sig
      type t
      val invariant : t Core_kernel.Invariant_intf.inv
      val create :
        ?alarm_precision:Time.Span.t -> ?level_bits:Level_bits.t -> unit -> t
      val alarm_precision : t -> Time.Span.t
      val level_bits : t -> Level_bits.t
      val default : t
      val durations : t -> Time.Span.t list
      val t_of_sexp : Sexplib.Sexp.t -> t
      val sexp_of_t : t -> Sexplib.Sexp.t
    end
  val create : config:Config.t -> start:Time.t -> 'a t
  val alarm_precision : 'a t -> Time.Span.t
  val now : 'a t -> Time.t
  val start : 'a t -> Time.t
  val is_empty : 'a t -> bool
  val length : 'a t -> int
  val iter : 'a t -> f:('Alarm.t -> unit) -> unit
  val interval_num : 'a t -> Time.t -> Interval_num.t
  val now_interval_num : 'a t -> Interval_num.t
  val interval_num_start : 'a t -> Interval_num.t -> Time.t
  val interval_start : 'a t -> Time.t -> Time.t
  val advance_clock :
    'a t -> to_:Time.t -> handle_fired:('Alarm.t -> unit) -> unit
  val fire_past_alarms : 'a t -> handle_fired:('Alarm.t -> unit) -> unit
  val alarm_upper_bound : 'a t -> Time.t
  val add : 'a t -> at:Time.t -> '-> 'Alarm.t
  val add_at_interval_num : 'a t -> at:Interval_num.t -> '-> 'Alarm.t
  val mem : 'a t -> 'Alarm.t -> bool
  val remove : 'a t -> 'Alarm.t -> unit
  val reschedule : 'a t -> 'Alarm.t -> at:Time.t -> unit
  val reschedule_at_interval_num :
    'a t -> 'Alarm.t -> at:Interval_num.t -> unit
  val clear : 'a t -> unit
  val next_alarm_fires_at : 'a t -> Time.t option
  module Priority_queue :
    sig
      type 'a t
      type 'a priority_queue = 'a t
      module Key : Core_kernel.Timing_wheel_intf.Interval_num
      module Elt :
        sig
          type 'a t
          val invariant :
            'a priority_queue ->
            'Core_kernel.Invariant.t -> 'a t Core_kernel.Invariant.t
          val key : 'a priority_queue -> 'a t -> Key.t
          val value : 'a priority_queue -> 'a t -> 'a
          val sexp_of_t : ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
        end
      val invariant :
        'Core_kernel.Invariant_intf.inv ->
        'a t Core_kernel.Invariant_intf.inv
      val create : ?level_bits:Level_bits.t -> unit -> 'a t
      val length : 'a t -> int
      val is_empty : 'a t -> bool
      val min_allowed_key : 'a t -> Key.t
      val max_allowed_key : 'a t -> Key.t
      val min_elt : 'a t -> 'Elt.t option
      val min_key : 'a t -> Key.t option
      val add : 'a t -> key:Key.t -> '-> 'Elt.t
      val remove : 'a t -> 'Elt.t -> unit
      val change_key : 'a t -> 'Elt.t -> key:Key.t -> unit
      val clear : 'a t -> unit
      val mem : 'a t -> 'Elt.t -> bool
      val increase_min_allowed_key :
        'a t -> key:Key.t -> handle_removed:('Elt.t -> unit) -> unit
      val iter : 'a t -> f:('Elt.t -> unit) -> unit
      val sexp_of_t : ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
    end
  val sexp_of_t : ('-> Sexplib.Sexp.t) -> 'a t -> Sexplib.Sexp.t
  val sexp_of_t_now : ('-> Sexplib.Sexp.t) -> 'a t_now -> Sexplib.Sexp.t
end