Package it.unimi.dsi.fastutil.doubles
Class AbstractDoubleSortedSet
- java.lang.Object
-
- java.util.AbstractCollection<java.lang.Double>
-
- it.unimi.dsi.fastutil.doubles.AbstractDoubleCollection
-
- it.unimi.dsi.fastutil.doubles.AbstractDoubleSet
-
- it.unimi.dsi.fastutil.doubles.AbstractDoubleSortedSet
-
- All Implemented Interfaces:
DoubleBidirectionalIterable,DoubleCollection,DoubleIterable,DoubleSet,DoubleSortedSet,java.lang.Cloneable,java.lang.Iterable<java.lang.Double>,java.util.Collection<java.lang.Double>,java.util.Set<java.lang.Double>,java.util.SortedSet<java.lang.Double>
- Direct Known Subclasses:
DoubleAVLTreeSet,DoubleLinkedOpenCustomHashSet,DoubleLinkedOpenHashSet,DoubleRBTreeSet
public abstract class AbstractDoubleSortedSet extends AbstractDoubleSet implements DoubleSortedSet
An abstract class providing basic methods for sorted sets implementing a type-specific interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract DoubleBidirectionalIteratoriterator()Returns a type-specific iterator on the elements of this collection.-
Methods inherited from class it.unimi.dsi.fastutil.doubles.AbstractDoubleSet
equals, hashCode, rem, remove
-
Methods inherited from class it.unimi.dsi.fastutil.doubles.AbstractDoubleCollection
add, add, addAll, addAll, contains, contains, containsAll, containsAll, forEach, remove, removeAll, removeAll, removeIf, retainAll, retainAll, toArray, toDoubleArray, toDoubleArray, toString
-
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleCollection
add, addAll, contains, containsAll, doubleIterator, doubleParallelStream, doubleSpliterator, doubleStream, parallelStream, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toArray, toDoubleArray, toDoubleArray
-
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleIterable
forEach, forEach, forEach
-
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleSet
add, contains, rem, remove, remove
-
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleSortedSet
comparator, first, firstDouble, headSet, headSet, iterator, last, lastDouble, spliterator, subSet, subSet, tailSet, tailSet
-
-
-
-
Method Detail
-
iterator
public abstract DoubleBidirectionalIterator iterator()
Description copied from interface:DoubleCollectionReturns a type-specific iterator on the elements of this collection.- Specified by:
iteratorin interfacejava.util.Collection<java.lang.Double>- Specified by:
iteratorin interfaceDoubleBidirectionalIterable- Specified by:
iteratorin interfaceDoubleCollection- Specified by:
iteratorin interfaceDoubleIterable- Specified by:
iteratorin interfaceDoubleSet- Specified by:
iteratorin interfaceDoubleSortedSet- Specified by:
iteratorin interfacejava.lang.Iterable<java.lang.Double>- Specified by:
iteratorin interfacejava.util.Set<java.lang.Double>- Specified by:
iteratorin classAbstractDoubleSet- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
Iterable.iterator()
-
-