Interface DoubleSortedSet

All Superinterfaces:
Collection<Double>, DoubleBidirectionalIterable, DoubleCollection, DoubleIterable, DoubleSet, Iterable<Double>, Set<Double>, SortedSet<Double>
All Known Implementing Classes:
AbstractDoubleSortedSet, DoubleAVLTreeSet, DoubleLinkedOpenCustomHashSet, DoubleLinkedOpenHashSet, DoubleRBTreeSet, DoubleSortedSets.EmptySet, DoubleSortedSets.Singleton, DoubleSortedSets.SynchronizedSortedSet, DoubleSortedSets.UnmodifiableSortedSet

public interface DoubleSortedSet extends DoubleSet, SortedSet<Double>, DoubleBidirectionalIterable
A type-specific SortedSet; provides some additional methods that use polymorphism to avoid (un)boxing.

Additionally, this interface strengthens iterator(), comparator() (for primitive types), SortedSet.subSet(Object,Object), SortedSet.headSet(Object) and SortedSet.tailSet(Object).

See Also: