Class FloatSortedSets.SynchronizedSortedSet
- All Implemented Interfaces:
FloatBidirectionalIterable
,FloatCollection
,FloatIterable
,FloatSet
,FloatSortedSet
,Serializable
,Iterable<Float>
,Collection<Float>
,SequencedCollection<Float>
,SequencedSet<Float>
,Set<Float>
,SortedSet<Float>
- Enclosing class:
FloatSortedSets
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionboolean
add
(float k) Ensures that this collection contains the specified element (optional operation).boolean
Deprecated.boolean
Adds all elements of the given type-specific collection to this collection.boolean
addAll
(Collection<? extends Float> c) void
clear()
boolean
contains
(float k) Returnstrue
if this collection contains the specified element.boolean
Deprecated.boolean
Checks whether this collection contains all elements from the given type-specific collection.boolean
containsAll
(Collection<?> c) Returns a widened primitive iterator on the elements of this collection.Return a parallel primitive stream over the elements, performing widening casts if needed.Returns widened primitive spliterator on the elements of this collection.Return a primitive stream over the elements, performing widening casts if needed.boolean
first()
Deprecated.Please use the corresponding type-specific method instead.float
Returns the first (lowest) element currently in this set.void
forEach
(FloatConsumer action) Performs the given action for each element of this type-specificIterable
until all elements have been processed or the action throws an exception.int
hashCode()
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.boolean
isEmpty()
iterator()
Returns a type-specific iterator on the elements of this collection.iterator
(float 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.float
Returns the last (highest) element currently in this set.Deprecated.boolean
Deprecated.boolean
Remove from this collection all elements in the given type-specific collection.boolean
removeAll
(Collection<?> c) boolean
removeIf
(FloatPredicate filter) Remove from this collection all elements which satisfy the given predicate.boolean
Retains in this collection only elements from the given type-specific collection.boolean
retainAll
(Collection<?> c) int
size()
Returns a type-specific spliterator on the elements of this collection.stream()
Deprecated.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.Object[]
toArray()
float[]
toArray
(float[] a) Returns an array containing all of the elements in this collection; the runtime type of the returned array is that of the specified array.<T> T[]
toArray
(T[] a) float[]
Returns a primitive type array containing the items of this collection.float[]
toFloatArray
(float[] a) Deprecated.toString()
Methods inherited from class it.unimi.dsi.fastutil.floats.FloatSets.SynchronizedSet
rem, remove
Methods inherited from interface java.util.Collection
toArray
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatCollection
add, addAll, contains, containsAll, doubleIterator, doubleParallelStream, doubleSpliterator, doubleStream, parallelStream, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toArray, toFloatArray, toFloatArray
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatIterable
forEach, forEach, forEach
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatSet
add, contains, rem, remove, remove
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatSortedSet
spliterator
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
-
comparator
Description copied from interface:FloatSortedSet
- Specified by:
comparator
in interfaceFloatSortedSet
- Specified by:
comparator
in interfaceSortedSet<Float>
-
subSet
Description copied from interface:FloatSortedSet
Returns a view of the portion of this sorted set whose elements range fromfromElement
, inclusive, totoElement
, exclusive.- Specified by:
subSet
in interfaceFloatSortedSet
- See Also:
-
headSet
Description copied from interface:FloatSortedSet
Returns a view of the portion of this sorted set whose elements are strictly less thantoElement
.- Specified by:
headSet
in interfaceFloatSortedSet
- See Also:
-
tailSet
Description copied from interface:FloatSortedSet
Returns a view of the portion of this sorted set whose elements are greater than or equal tofromElement
.- Specified by:
tailSet
in interfaceFloatSortedSet
- See Also:
-
iterator
Description copied from interface:FloatCollection
Returns a type-specific iterator on the elements of this collection.- Specified by:
iterator
in interfaceCollection<Float>
- Specified by:
iterator
in interfaceFloatBidirectionalIterable
- Specified by:
iterator
in interfaceFloatCollection
- Specified by:
iterator
in interfaceFloatIterable
- Specified by:
iterator
in interfaceFloatSet
- Specified by:
iterator
in interfaceFloatSortedSet
- Specified by:
iterator
in interfaceIterable<Float>
- Specified by:
iterator
in interfaceSet<Float>
- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
-
iterator
Description copied from interface:FloatSortedSet
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 interfaceFloatSortedSet
- Parameters:
from
- an element to start from.- Returns:
- a bidirectional iterator on the element in this set, starting at the given element.
-
firstFloat
public float firstFloat()Description copied from interface:FloatSortedSet
Returns the first (lowest) element currently in this set.- Specified by:
firstFloat
in interfaceFloatSortedSet
- See Also:
-
lastFloat
public float lastFloat()Description copied from interface:FloatSortedSet
Returns the last (highest) element currently in this set.- Specified by:
lastFloat
in interfaceFloatSortedSet
- See Also:
-
first
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
first
in interfaceFloatSortedSet
- Specified by:
first
in interfaceSortedSet<Float>
-
last
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
last
in interfaceFloatSortedSet
- Specified by:
last
in interfaceSortedSet<Float>
-
subSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
subSet
in interfaceFloatSortedSet
- Specified by:
subSet
in interfaceSortedSet<Float>
-
headSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
headSet
in interfaceFloatSortedSet
- Specified by:
headSet
in interfaceSortedSet<Float>
-
tailSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
tailSet
in interfaceFloatSortedSet
- Specified by:
tailSet
in interfaceSortedSet<Float>
-
add
public boolean add(float k) Description copied from interface:FloatCollection
Ensures that this collection contains the specified element (optional operation).- Specified by:
add
in interfaceFloatCollection
- See Also:
-
contains
public boolean contains(float k) Description copied from interface:FloatCollection
Returnstrue
if this collection contains the specified element.- Specified by:
contains
in interfaceFloatCollection
- See Also:
-
size
public int size()- Specified by:
size
in interfaceCollection<Float>
-
isEmpty
public boolean isEmpty()- Specified by:
isEmpty
in interfaceCollection<Float>
-
toFloatArray
public float[] toFloatArray()Description copied from interface:FloatCollection
Returns a primitive type array containing the items of this collection.- Specified by:
toFloatArray
in interfaceFloatCollection
- Returns:
- a primitive type array containing the items of this collection.
- See Also:
-
toArray
- Specified by:
toArray
in interfaceCollection<Float>
-
toFloatArray
Deprecated.Description copied from interface:FloatCollection
Returns a primitive type array containing the items of this collection.Note that, contrarily to
Collection.toArray(Object[])
, this methods just writes all elements of this collection: no special value will be added after the last one.- Specified by:
toFloatArray
in interfaceFloatCollection
- Parameters:
a
- if this array is big enough, it will be used to store this collection.- Returns:
- a primitive type array containing the items of this collection.
- See Also:
-
toArray
public float[] toArray(float[] a) Description copied from interface:FloatCollection
Returns an array containing all of the elements in this collection; the runtime type of the returned array is that of the specified array.Note that, contrarily to
Collection.toArray(Object[])
, this methods just writes all elements of this collection: no special value will be added after the last one.- Specified by:
toArray
in interfaceFloatCollection
- Parameters:
a
- if this array is big enough, it will be used to store this collection.- Returns:
- a primitive type array containing the items of this collection.
- See Also:
-
addAll
Description copied from interface:FloatCollection
Adds all elements of the given type-specific collection to this collection.- Specified by:
addAll
in interfaceFloatCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
-
containsAll
Description copied from interface:FloatCollection
Checks whether this collection contains all elements from the given type-specific collection.- Specified by:
containsAll
in interfaceFloatCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection contains all elements of the argument.- See Also:
-
removeAll
Description copied from interface:FloatCollection
Remove from this collection all elements in the given type-specific collection.- Specified by:
removeAll
in interfaceFloatCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
-
retainAll
Description copied from interface:FloatCollection
Retains in this collection only elements from the given type-specific collection.- Specified by:
retainAll
in interfaceFloatCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
-
add
Deprecated.Description copied from interface:FloatCollection
- Specified by:
add
in interfaceCollection<Float>
- Specified by:
add
in interfaceFloatCollection
-
contains
Deprecated.Description copied from interface:FloatCollection
- Specified by:
contains
in interfaceCollection<Float>
- Specified by:
contains
in interfaceFloatCollection
-
remove
Deprecated.Description copied from interface:FloatCollection
- Specified by:
remove
in interfaceCollection<Float>
- Specified by:
remove
in interfaceFloatCollection
-
doubleIterator
Description copied from interface:FloatCollection
Returns a widened primitive iterator on the elements of this collection.This method is provided for the purpose of APIs that expect only the JDK's primitive iterators, of which there are only
int
,long
, anddouble
.- Specified by:
doubleIterator
in interfaceFloatCollection
- Specified by:
doubleIterator
in interfaceFloatIterable
- Returns:
- a widened primitive iterator on the elements of this collection.
-
doubleSpliterator
Description copied from interface:FloatCollection
Returns 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:
doubleSpliterator
in interfaceFloatCollection
- Specified by:
doubleSpliterator
in interfaceFloatIterable
- Returns:
- a widened primitive spliterator on the elements of this collection.
-
doubleStream
Description copied from interface:FloatCollection
Return a primitive stream over the elements, performing widening casts if needed.- Specified by:
doubleStream
in interfaceFloatCollection
- Returns:
- a primitive stream over the elements.
- See Also:
-
doubleParallelStream
Description copied from interface:FloatCollection
Return a parallel primitive stream over the elements, performing widening casts if needed.- Specified by:
doubleParallelStream
in interfaceFloatCollection
- Returns:
- a parallel primitive stream over the elements.
- See Also:
-
toArray
public <T> T[] toArray(T[] a) - Specified by:
toArray
in interfaceCollection<Float>
-
spliterator
Description copied from interface:FloatCollection
Returns a type-specific spliterator on the elements of this collection.See
Collection.spliterator()
for more documentation on the requirements of the returned spliterator.- Specified by:
spliterator
in interfaceCollection<Float>
- Specified by:
spliterator
in interfaceFloatCollection
- Specified by:
spliterator
in interfaceFloatIterable
- Specified by:
spliterator
in interfaceIterable<Float>
- Returns:
- a type-specific spliterator on the elements of this collection.
-
stream
Deprecated.Description copied from interface:FloatCollection
- Specified by:
stream
in interfaceCollection<Float>
- Specified by:
stream
in interfaceFloatCollection
-
parallelStream
Deprecated.Description copied from interface:FloatCollection
- Specified by:
parallelStream
in interfaceCollection<Float>
- Specified by:
parallelStream
in interfaceFloatCollection
-
forEach
Description copied from interface:FloatIterable
Performs the given action for each element of this type-specificIterable
until all elements have been processed or the action throws an exception.- Specified by:
forEach
in interfaceFloatIterable
- Parameters:
action
- the action to be performed for each element.- See Also:
-
addAll
- Specified by:
addAll
in interfaceCollection<Float>
-
containsAll
- Specified by:
containsAll
in interfaceCollection<Float>
-
removeAll
- Specified by:
removeAll
in interfaceCollection<Float>
-
retainAll
- Specified by:
retainAll
in interfaceCollection<Float>
-
removeIf
Description copied from interface:FloatCollection
Remove from this collection all elements which satisfy the given predicate.- Specified by:
removeIf
in interfaceFloatCollection
- Parameters:
filter
- a predicate which returnstrue
for elements to be removed.- Returns:
true
if any elements were removed.- See Also:
-
clear
public void clear()- Specified by:
clear
in interfaceCollection<Float>
-
toString
-
hashCode
public int hashCode()- Specified by:
hashCode
in interfaceCollection<Float>
- Overrides:
hashCode
in classObject
-
equals
- Specified by:
equals
in interfaceCollection<Float>
- Overrides:
equals
in classObject
-