Module Bucket.Bucket0

Standard bucket; other buckets may be used for testing

module Config_ : sig ... end
include sig ... end
val max_sorted : int
val max_unsorted : int
val bucket_length_in_ints : int
type t = Make_2(Config_).t
type bucket = t
val to_bigarray : bucket -> Kv_hash__.Util.int_bigarray
val of_bigarray : Kv_hash__.Util.int_bigarray -> bucket
val find : bucket -> int -> int option
val insert : bucket -> int -> int -> [ `Ok | `Split of (int * int) list * int * (int * int) list ]
val init_sorted : bucket -> (int * int) list -> unit
val show : bucket -> unit
val export : bucket -> Bucket_intf.exported_bucket
module With_debug : functor () sig ... end