<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * This interface defines an ADT for data structures that support storing a 
 * collection of comparable values in their natural ordering (similar to the
 * SortedCollection interface), and that are also iterable.
 */
public interface IterableSortedCollection&lt;T extends Comparable&lt;T&gt;&gt;
    extends SortedCollection&lt;T&gt;, Iterable&lt;T&gt; {

    public void setIteratorMin(Comparable&lt;T&gt; min); // null to clear min
    public void setIteratorMax(Comparable&lt;T&gt; max); // null to clear max
}
</pre></body></html>