Module Core_kernel.Bucket

A bucket is a simple data structure for holding up to size elements of a given type.

Its actual signature is defined in Core_kernel.Bucket.S.

module type Contents : sig ... end
module type S : sig ... end
module Make : functor (C : Contents) -> S with type contents = C.t
module Int : sig ... end
module Int64 : sig ... end
module Float : sig ... end