module type S =sig..end
FCSet.Make.
This signature add functions that assume that the compare function between
elements implements a specific order. In this case, the layout of the
tree might be interesting to the user.
include FCSet.S_Basic_Compare
val min_elt : t -> eltOrd.compare ordering), or raise
Not_found if the set is empty.val max_elt : t -> eltval nearest_elt_le : elt -> t -> eltnearest_elt_le v s returns the largest element of s that is
smaller or equal to v.Not_found if no such element exists.val nearest_elt_ge : elt -> t -> eltnearest_elt_ge v s returns the smallest element of s that is
bigger or equal to v.Not_found if no such element exists.