Class IntSortedSets.Singleton
- All Implemented Interfaces:
IntBidirectionalIterable
,IntCollection
,IntIterable
,IntSet
,IntSortedSet
,Serializable
,Cloneable
,Iterable<Integer>
,Collection<Integer>
,SequencedCollection<Integer>
,SequencedSet<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.int
firstInt()
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-specificBidirectionalIterator
on 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.int
lastInt()
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, toIntArray
Methods inherited from class it.unimi.dsi.fastutil.ints.AbstractIntSet
equals, hashCode, rem
Methods inherited from class it.unimi.dsi.fastutil.ints.AbstractIntCollection
add, add, contains, containsAll, containsAll, forEach, remove, removeIf, toArray, toIntArray, toString
Methods inherited from class java.util.AbstractCollection
clear, isEmpty, toArray
Methods inherited from interface java.util.Collection
toArray
Methods 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, toIntArray
Methods inherited from interface it.unimi.dsi.fastutil.ints.IntIterable
forEach, forEach, forEach
Methods inherited from interface it.unimi.dsi.fastutil.ints.IntSet
add, contains, rem, remove, remove
Methods inherited from interface it.unimi.dsi.fastutil.ints.IntSortedSet
iterator
Methods inherited from interface java.util.Set
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, remove, removeAll, retainAll, size, toArray, toArray
Methods inherited from interface java.util.SortedSet
addFirst, addLast, getFirst, getLast, removeFirst, removeLast, reversed
-
Method Details
-
iterator
Description copied from interface:IntSortedSet
Returns a type-specificBidirectionalIterator
on 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:
iterator
in 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:
comparator
in interfaceIntSortedSet
- Specified by:
comparator
in interfaceSortedSet<Integer>
-
spliterator
Description copied from interface:IntSet
Returns 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:
spliterator
in interfaceCollection<Integer>
- Specified by:
spliterator
in interfaceIntCollection
- Specified by:
spliterator
in interfaceIntIterable
- Specified by:
spliterator
in interfaceIntSet
- Specified by:
spliterator
in interfaceIntSortedSet
- Specified by:
spliterator
in interfaceIterable<Integer>
- Specified by:
spliterator
in interfaceSet<Integer>
- Specified by:
spliterator
in interfaceSortedSet<Integer>
- Overrides:
spliterator
in classIntSets.Singleton
- Returns:
- a type-specific spliterator on the elements of this collection.
-
subSet
Description copied from interface:IntSortedSet
Returns a view of the portion of this sorted set whose elements range fromfromElement
, inclusive, totoElement
, exclusive.- Specified by:
subSet
in interfaceIntSortedSet
- See Also:
-
headSet
Description copied from interface:IntSortedSet
Returns a view of the portion of this sorted set whose elements are strictly less thantoElement
.- Specified by:
headSet
in interfaceIntSortedSet
- See Also:
-
tailSet
Description copied from interface:IntSortedSet
Returns a view of the portion of this sorted set whose elements are greater than or equal tofromElement
.- Specified by:
tailSet
in interfaceIntSortedSet
- See Also:
-
firstInt
public int firstInt()Description copied from interface:IntSortedSet
Returns the first (lowest) element currently in this set.- Specified by:
firstInt
in interfaceIntSortedSet
- See Also:
-
lastInt
public int lastInt()Description copied from interface:IntSortedSet
Returns the last (highest) element currently in this set.- Specified by:
lastInt
in interfaceIntSortedSet
- See Also:
-
subSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
subSet
in interfaceIntSortedSet
- Specified by:
subSet
in interfaceSortedSet<Integer>
-
headSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
headSet
in interfaceIntSortedSet
- Specified by:
headSet
in interfaceSortedSet<Integer>
-
tailSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
tailSet
in interfaceIntSortedSet
- Specified by:
tailSet
in interfaceSortedSet<Integer>
-
first
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
first
in interfaceIntSortedSet
- Specified by:
first
in interfaceSortedSet<Integer>
-
last
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
last
in interfaceIntSortedSet
- Specified by:
last
in interfaceSortedSet<Integer>
-