Class IntSortedSets.Singleton
- 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 TypeMethodDescriptionfirst()Deprecated.Please use the corresponding type-specific method instead.intfirstInt()Returns the first (lowest) element currently in this set.headSet(int to) 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.Returns a type-specific spliterator on the elements of 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 from) 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.Singleton
addAll, addAll, clone, contains, forEach, forEach, iterator, remove, removeAll, removeAll, removeIf, removeIf, retainAll, retainAll, size, toArray, toIntArrayMethods inherited from class it.unimi.dsi.fastutil.ints.AbstractIntSet
equals, hashCode, remMethods inherited from class it.unimi.dsi.fastutil.ints.AbstractIntCollection
add, add, contains, containsAll, containsAll, forEach, remove, removeIf, toArray, toIntArray, toStringMethods inherited from class java.util.AbstractCollection
clear, isEmpty, toArrayMethods 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
-
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.
-
comparator
Description copied from interface:IntSortedSet- Specified by:
comparatorin interfaceIntSortedSet- Specified by:
comparatorin interfaceSortedSet<Integer>
-
spliterator
Description copied from interface:IntSetReturns a type-specific spliterator on the elements of this set.Set spliterators must report at least
Spliterator.DISTINCT.See
Set.spliterator()for more documentation on the requirements of the returned spliterator.- Specified by:
spliteratorin interfaceCollection<Integer>- Specified by:
spliteratorin interfaceIntCollection- Specified by:
spliteratorin interfaceIntIterable- Specified by:
spliteratorin interfaceIntSet- Specified by:
spliteratorin interfaceIntSortedSet- Specified by:
spliteratorin interfaceIterable<Integer>- Specified by:
spliteratorin interfaceSet<Integer>- Specified by:
spliteratorin interfaceSortedSet<Integer>- Overrides:
spliteratorin classIntSets.Singleton- Returns:
- a type-specific spliterator on the elements of this collection.
-
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:
-
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>
-