Class AbstractDoubleSortedSet
java.lang.Object
java.util.AbstractCollection<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, Cloneable, Iterable<Double>, Collection<Double>, SequencedCollection<Double>, SequencedSet<Double>, Set<Double>, SortedSet<Double>
- Direct Known Subclasses:
DoubleAVLTreeSet, DoubleLinkedOpenCustomHashSet, DoubleLinkedOpenHashSet, DoubleRBTreeSet
An abstract class providing basic methods for sorted sets implementing a type-specific interface.
-
Method Summary
Modifier and TypeMethodDescriptionabstract DoubleBidirectionalIteratoriterator()Returns a type-specific iterator on the elements of this collection.Methods inherited from class AbstractDoubleSet
equals, hashCode, rem, removeMethods inherited from class AbstractDoubleCollection
add, add, addAll, addAll, contains, contains, containsAll, containsAll, forEach, remove, removeAll, removeAll, removeIf, retainAll, retainAll, toArray, toDoubleArray, toDoubleArray, toStringMethods inherited from interface Collection
toArrayMethods inherited from interface DoubleCollection
add, addAll, contains, containsAll, doubleIterator, doubleParallelStream, doubleSpliterator, doubleStream, parallelStream, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toArray, toDoubleArray, toDoubleArrayMethods inherited from interface DoubleIterable
forEach, forEach, forEachMethods inherited from interface DoubleSortedSet
comparator, first, firstDouble, headSet, headSet, iterator, last, lastDouble, spliterator, subSet, subSet, tailSet, tailSetMethods inherited from interface Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, remove, removeAll, retainAll, size, toArray, toArrayMethods inherited from interface SortedSet
addFirst, addLast, getFirst, getLast, removeFirst, removeLast, reversed
-
Method Details
-
iterator
Description copied from interface:DoubleCollectionReturns a type-specific iterator on the elements of this collection.- Specified by:
iteratorin interfaceCollection<Double>- Specified by:
iteratorin interfaceDoubleBidirectionalIterable- Specified by:
iteratorin interfaceDoubleCollection- Specified by:
iteratorin interfaceDoubleIterable- Specified by:
iteratorin interfaceDoubleSet- Specified by:
iteratorin interfaceDoubleSortedSet- Specified by:
iteratorin interfaceIterable<Double>- Specified by:
iteratorin interfaceSet<Double>- Specified by:
iteratorin classAbstractDoubleSet- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
-