Class AbstractIntSortedSet
java.lang.Object
java.util.AbstractCollection<Integer>
it.unimi.dsi.fastutil.ints.AbstractIntCollection
it.unimi.dsi.fastutil.ints.AbstractIntSet
it.unimi.dsi.fastutil.ints.AbstractIntSortedSet
- All Implemented Interfaces:
IntBidirectionalIterable, IntCollection, IntIterable, IntSet, IntSortedSet, Cloneable, Iterable<Integer>, Collection<Integer>, SequencedCollection<Integer>, SequencedSet<Integer>, Set<Integer>, SortedSet<Integer>
- Direct Known Subclasses:
IntAVLTreeSet, IntLinkedOpenCustomHashSet, IntLinkedOpenHashSet, IntRBTreeSet
An abstract class providing basic methods for sorted sets implementing a type-specific interface.
-
Method Summary
Modifier and TypeMethodDescriptionabstract IntBidirectionalIteratoriterator()Returns a type-specific iterator on the elements of this collection.Methods inherited from class AbstractIntSet
equals, hashCode, rem, removeMethods inherited from class AbstractIntCollection
add, add, addAll, addAll, contains, contains, containsAll, containsAll, forEach, remove, removeAll, removeAll, removeIf, retainAll, retainAll, toArray, toIntArray, toIntArray, toStringMethods inherited from interface Collection
toArrayMethods inherited from interface IntCollection
add, addAll, contains, containsAll, intIterator, intParallelStream, intSpliterator, intStream, parallelStream, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toArray, toIntArray, toIntArrayMethods inherited from interface IntIterable
forEach, forEach, forEachMethods inherited from interface IntSortedSet
comparator, first, firstInt, headSet, headSet, iterator, last, lastInt, 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:IntCollectionReturns a type-specific iterator on the elements of this collection.- Specified by:
iteratorin interfaceCollection<Integer>- Specified by:
iteratorin interfaceIntBidirectionalIterable- Specified by:
iteratorin interfaceIntCollection- Specified by:
iteratorin interfaceIntIterable- Specified by:
iteratorin interfaceIntSet- Specified by:
iteratorin interfaceIntSortedSet- Specified by:
iteratorin interfaceIterable<Integer>- Specified by:
iteratorin interfaceSet<Integer>- Specified by:
iteratorin classAbstractIntSet- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
-