let iter: t => (elt => unit) => unit;
let fold: t => 'a => (elt => 'a => 'a) => 'a;
let for_all: t => (elt => bool) => bool;
let exists: t => (elt => bool) => bool;
let elements: t => list(elt);
let mem: t => elt => bool;
let remove: t => elt => t;
let of_list: list(elt) => t;
let of_sorted_array: array(elt) => t;
let invariant: t => bool;
let print: Stdlib.Format.formatter => t => unit;