Class FloatSortedSets.Singleton
- All Implemented Interfaces:
FloatBidirectionalIterable,FloatCollection,FloatIterable,FloatSet,FloatSortedSet,Serializable,Cloneable,Iterable<Float>,Collection<Float>,Set<Float>,SortedSet<Float>
- Enclosing class:
- FloatSortedSets
This class may be useful to implement your own in case you subclass a type-specific sorted set.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionReturns widened primitive spliterator on the elements of this collection.first()Deprecated.Please use the corresponding type-specific method instead.floatReturns the first (lowest) element currently in this set.headSet(float 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(float 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.floatReturns the last (highest) element currently in this set.Returns a type-specific spliterator on the elements of this set.subSet(float from, float 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(float 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.floats.FloatSets.Singleton
addAll, addAll, clone, contains, doubleIterator, forEach, forEach, iterator, remove, removeAll, removeAll, removeIf, removeIf, retainAll, retainAll, size, toArray, toFloatArrayMethods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatSet
equals, hashCode, remMethods inherited from class it.unimi.dsi.fastutil.floats.AbstractFloatCollection
add, add, contains, containsAll, containsAll, remove, toArray, toFloatArray, toStringMethods inherited from class java.util.AbstractCollection
clear, isEmpty, toArrayMethods inherited from interface java.util.Collection
toArrayMethods inherited from interface it.unimi.dsi.fastutil.floats.FloatCollection
add, addAll, contains, containsAll, doubleIterator, doubleParallelStream, doubleStream, parallelStream, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toArray, toFloatArray, toFloatArrayMethods inherited from interface it.unimi.dsi.fastutil.floats.FloatIterable
forEach, forEach, forEachMethods inherited from interface it.unimi.dsi.fastutil.floats.FloatSet
add, contains, rem, remove, removeMethods inherited from interface it.unimi.dsi.fastutil.floats.FloatSortedSet
iterator
-
Method Details
-
iterator
Description copied from interface:FloatSortedSetReturns 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 interfaceFloatSortedSet- 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:FloatSortedSet- Specified by:
comparatorin interfaceFloatSortedSet- Specified by:
comparatorin interfaceSortedSet<Float>
-
spliterator
Description copied from interface:FloatSetReturns 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<Float>- Specified by:
spliteratorin interfaceFloatCollection- Specified by:
spliteratorin interfaceFloatIterable- Specified by:
spliteratorin interfaceFloatSet- Specified by:
spliteratorin interfaceFloatSortedSet- Specified by:
spliteratorin interfaceIterable<Float>- Specified by:
spliteratorin interfaceSet<Float>- Specified by:
spliteratorin interfaceSortedSet<Float>- Overrides:
spliteratorin classFloatSets.Singleton- Returns:
- a type-specific spliterator on the elements of this collection.
-
subSet
Description copied from interface:FloatSortedSetReturns a view of the portion of this sorted set whose elements range fromfromElement, inclusive, totoElement, exclusive.- Specified by:
subSetin interfaceFloatSortedSet- See Also:
-
headSet
Description copied from interface:FloatSortedSetReturns a view of the portion of this sorted set whose elements are strictly less thantoElement.- Specified by:
headSetin interfaceFloatSortedSet- See Also:
-
tailSet
Description copied from interface:FloatSortedSetReturns a view of the portion of this sorted set whose elements are greater than or equal tofromElement.- Specified by:
tailSetin interfaceFloatSortedSet- See Also:
-
firstFloat
public float firstFloat()Description copied from interface:FloatSortedSetReturns the first (lowest) element currently in this set.- Specified by:
firstFloatin interfaceFloatSortedSet- See Also:
-
lastFloat
public float lastFloat()Description copied from interface:FloatSortedSetReturns the last (highest) element currently in this set.- Specified by:
lastFloatin interfaceFloatSortedSet- See Also:
-
doubleSpliterator
Description copied from interface:FloatCollectionReturns widened primitive spliterator on the elements of this collection.This method is provided for the purpose of APIs that expect only the JDK's primitive spliterators, of which there are only
int,long, anddouble.- Specified by:
doubleSpliteratorin interfaceFloatCollection- Specified by:
doubleSpliteratorin interfaceFloatIterable- Overrides:
doubleSpliteratorin classFloatSets.Singleton- Returns:
- a widened primitive spliterator on the elements of this collection.
-
subSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
subSetin interfaceFloatSortedSet- Specified by:
subSetin interfaceSortedSet<Float>
-
headSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
headSetin interfaceFloatSortedSet- Specified by:
headSetin interfaceSortedSet<Float>
-
tailSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
tailSetin interfaceFloatSortedSet- Specified by:
tailSetin interfaceSortedSet<Float>
-
first
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
firstin interfaceFloatSortedSet- Specified by:
firstin interfaceSortedSet<Float>
-
last
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
lastin interfaceFloatSortedSet- Specified by:
lastin interfaceSortedSet<Float>
-