it.unimi.dsi.fastutil.doubles
Class AbstractDoubleSortedSet
java.lang.Object
it.unimi.dsi.fastutil.doubles.AbstractDoubleCollection
it.unimi.dsi.fastutil.doubles.AbstractDoubleSet
it.unimi.dsi.fastutil.doubles.AbstractDoubleSortedSet
- All Implemented Interfaces:
- Cloneable, Collection, DoubleCollection, DoubleSet, DoubleSortedSet, Set, SortedSet
- Direct Known Subclasses:
- DoubleAVLTreeSet, DoubleLinkedOpenHashSet, DoubleRBTreeSet
- public abstract class AbstractDoubleSortedSet
- extends AbstractDoubleSet
- implements DoubleSortedSet
An abstract class providing basic methods for sorted sets implementing a type-specific interface.
Methods inherited from class it.unimi.dsi.fastutil.doubles.AbstractDoubleCollection |
add, add, addAll, addAll, clear, contains, containsAll, containsAll, isEmpty, iterator, rem, removeAll, removeAll, retainAll, retainAll, toArray, toArray, toArray, toDoubleArray, toDoubleArray, toString |
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleSet |
remove |
Methods inherited from interface java.util.Set |
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray |
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleCollection |
add, addAll, contains, containsAll, doubleIterator, rem, removeAll, retainAll, toArray, toDoubleArray, toDoubleArray |
headSet
public SortedSet headSet(Object to)
- Delegates to the corresponding type-specific method.
- Specified by:
headSet
in interface SortedSet
tailSet
public SortedSet tailSet(Object from)
- Delegates to the corresponding type-specific method.
- Specified by:
tailSet
in interface SortedSet
subSet
public SortedSet subSet(Object from,
Object to)
- Delegates to the corresponding type-specific method.
- Specified by:
subSet
in interface SortedSet
first
public Object first()
- Delegates to the corresponding type-specific method.
- Specified by:
first
in interface SortedSet
last
public Object last()
- Delegates to the corresponding type-specific method.
- Specified by:
last
in interface SortedSet