stk
Stk.Packer
type t = {
min : int;
max : int;
mutable expand : int;
mutable current : int;
mutable fixed : bool;
}
module type Elt = sig ... end
module Make (E : Elt) : sig ... end