package weiss.util; /** * SortedSet interface. */ public interface SortedSet<AnyType> extends Set<AnyType> { /** * Return the comparator used by this SortedSet. * @return the comparator or null if the default comparator is used. */ Comparator<? super AnyType> comparator( ); /** * Find the smallest item in the set. * @return the smallest item. * @throws NoSuchElementException if the set is empty. */ AnyType first( ); /** * Find the largest item in the set. * @return the largest item. * @throws NoSuchElementException if the set is empty. */ AnyType last( ); }