Class IntSortedSets.EmptySet
- All Implemented Interfaces:
IntBidirectionalIterable,IntCollection,IntIterable,IntSet,IntSortedSet,Serializable,Cloneable,Iterable<Integer>,Collection<Integer>,Set<Integer>,SortedSet<Integer>
- Enclosing class:
IntSortedSets
This class may be useful to implement your own in case you subclass a type-specific sorted set.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionclone()first()Deprecated.Please use the corresponding type-specific method instead.intfirstInt()Returns the first (lowest) element currently in this set.headSet(int from) Returns a view of the portion of this sorted set whose elements are strictly less thantoElement.Deprecated.Please use the corresponding type-specific method instead.iterator(int from) Returns a type-specificBidirectionalIteratoron the elements in this set, starting from a given element of the domain (optional operation).last()Deprecated.Please use the corresponding type-specific method instead.intlastInt()Returns the last (highest) element currently in this set.subSet(int from, int to) Returns a view of the portion of this sorted set whose elements range fromfromElement, inclusive, totoElement, exclusive.Deprecated.Please use the corresponding type-specific method instead.tailSet(int to) Returns a view of the portion of this sorted set whose elements are greater than or equal tofromElement.Deprecated.Please use the corresponding type-specific method instead.Methods inherited from class it.unimi.dsi.fastutil.ints.IntSets.EmptySet
equals, rem, removeMethods inherited from class it.unimi.dsi.fastutil.ints.IntCollections.EmptyCollection
addAll, addAll, clear, contains, containsAll, containsAll, forEach, forEach, hashCode, iterator, removeAll, removeAll, removeIf, removeIf, retainAll, retainAll, size, spliterator, toArray, toArray, toIntArray, toIntArrayMethods inherited from class it.unimi.dsi.fastutil.ints.AbstractIntCollection
add, add, contains, forEach, remove, removeIf, toArray, toStringMethods inherited from class java.util.AbstractCollection
isEmptyMethods inherited from interface java.util.Collection
toArrayMethods inherited from interface it.unimi.dsi.fastutil.ints.IntCollection
add, addAll, contains, containsAll, intIterator, intParallelStream, intSpliterator, intStream, parallelStream, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toArray, toIntArray, toIntArrayMethods inherited from interface it.unimi.dsi.fastutil.ints.IntIterable
forEach, forEach, forEachMethods inherited from interface it.unimi.dsi.fastutil.ints.IntSet
add, contains, rem, remove, removeMethods inherited from interface it.unimi.dsi.fastutil.ints.IntSortedSet
iterator, spliterator
-
Method Details
-
iterator
Description copied from interface:IntSortedSetReturns a type-specificBidirectionalIteratoron the elements in this set, starting from a given element of the domain (optional operation).This method returns a type-specific bidirectional iterator with given starting point. The starting point is any element comparable to the elements of this set (even if it does not actually belong to the set). The next element of the returned iterator is the least element of the set that is greater than the starting point (if there are no elements greater than the starting point,
hasNext()will returnfalse). The previous element of the returned iterator is the greatest element of the set that is smaller than or equal to the starting point (if there are no elements smaller than or equal to the starting point,hasPrevious()will returnfalse).Note that passing the last element of the set as starting point and calling
previous()you can traverse the entire set in reverse order.- Specified by:
iteratorin interfaceIntSortedSet- Parameters:
from- an element to start from.- Returns:
- a bidirectional iterator on the element in this set, starting at the given element.
-
subSet
Description copied from interface:IntSortedSetReturns a view of the portion of this sorted set whose elements range fromfromElement, inclusive, totoElement, exclusive.- Specified by:
subSetin interfaceIntSortedSet- See Also:
-
headSet
Description copied from interface:IntSortedSetReturns a view of the portion of this sorted set whose elements are strictly less thantoElement.- Specified by:
headSetin interfaceIntSortedSet- See Also:
-
tailSet
Description copied from interface:IntSortedSetReturns a view of the portion of this sorted set whose elements are greater than or equal tofromElement.- Specified by:
tailSetin interfaceIntSortedSet- See Also:
-
firstInt
public int firstInt()Description copied from interface:IntSortedSetReturns the first (lowest) element currently in this set.- Specified by:
firstIntin interfaceIntSortedSet- See Also:
-
lastInt
public int lastInt()Description copied from interface:IntSortedSetReturns the last (highest) element currently in this set.- Specified by:
lastIntin interfaceIntSortedSet- See Also:
-
comparator
Description copied from interface:IntSortedSet- Specified by:
comparatorin interfaceIntSortedSet- Specified by:
comparatorin interfaceSortedSet<Integer>
-
subSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
subSetin interfaceIntSortedSet- Specified by:
subSetin interfaceSortedSet<Integer>
-
headSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
headSetin interfaceIntSortedSet- Specified by:
headSetin interfaceSortedSet<Integer>
-
tailSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
tailSetin interfaceIntSortedSet- Specified by:
tailSetin interfaceSortedSet<Integer>
-
first
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
firstin interfaceIntSortedSet- Specified by:
firstin interfaceSortedSet<Integer>
-
last
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
lastin interfaceIntSortedSet- Specified by:
lastin interfaceSortedSet<Integer>
-
clone
- Overrides:
clonein classIntSets.EmptySet
-