Uses of Class
edu.rice.cs.plt.collect.ExternallySortedSet

Packages that use ExternallySortedSet
edu.rice.cs.plt.collect Contains general-purpose extensions to and variations on the java.util collections framework. 
 

Uses of ExternallySortedSet in edu.rice.cs.plt.collect
 

Methods in edu.rice.cs.plt.collect that return ExternallySortedSet
 ExternallySortedSet<T,C> ExternallySortedSet.headSet(C to)
           
 ExternallySortedSet<T,C> ExternallySortedSet.subSet(C from, C to)
           
 ExternallySortedSet<T,C> ExternallySortedSet.tailSet(C from)
           
 

Methods in edu.rice.cs.plt.collect with parameters of type ExternallySortedSet
 boolean ExternallySortedSet.addAll(ExternallySortedSet<? extends T,? extends C> s)
          Add every element of s to this set (if it is not already present).
 boolean ExternallySortedSet.retainAll(ExternallySortedSet<?,?> s)
          Removes every element of this set that is not in s.