Class DoubleSortedSets.SynchronizedSortedSet
- All Implemented Interfaces:
DoubleBidirectionalIterable
,DoubleCollection
,DoubleIterable
,DoubleSet
,DoubleSortedSet
,Serializable
,Iterable<Double>
,Collection<Double>
,SequencedCollection<Double>
,SequencedSet<Double>
,Set<Double>
,SortedSet<Double>
- Enclosing class:
DoubleSortedSets
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionboolean
add
(double 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 Double> c) void
clear()
boolean
contains
(double 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 primitive iterator on the elements of this collection.Return a parallel primitive stream over the elements, performing widening casts if needed.Returns a 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.double
Returns the first (lowest) element currently in this set.void
forEach
(DoubleConsumer 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
(double 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
(double 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.double
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
(DoublePredicate 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
(double from, double 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
(double 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()
double[]
toArray
(double[] 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) double[]
Returns a primitive type array containing the items of this collection.double[]
toDoubleArray
(double[] a) Deprecated.toString()
Methods inherited from class it.unimi.dsi.fastutil.doubles.DoubleSets.SynchronizedSet
rem, remove
Methods inherited from interface java.util.Collection
toArray
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleCollection
add, addAll, contains, containsAll, doubleIterator, doubleParallelStream, doubleSpliterator, doubleStream, parallelStream, removeAll, removeIf, removeIf, removeIf, retainAll, stream, toArray, toDoubleArray, toDoubleArray
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleIterable
forEach, forEach, forEach
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleSet
add, contains, rem, remove, remove
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleSortedSet
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:DoubleSortedSet
- Specified by:
comparator
in interfaceDoubleSortedSet
- Specified by:
comparator
in interfaceSortedSet<Double>
-
subSet
Description copied from interface:DoubleSortedSet
Returns a view of the portion of this sorted set whose elements range fromfromElement
, inclusive, totoElement
, exclusive.- Specified by:
subSet
in interfaceDoubleSortedSet
- See Also:
-
headSet
Description copied from interface:DoubleSortedSet
Returns a view of the portion of this sorted set whose elements are strictly less thantoElement
.- Specified by:
headSet
in interfaceDoubleSortedSet
- See Also:
-
tailSet
Description copied from interface:DoubleSortedSet
Returns a view of the portion of this sorted set whose elements are greater than or equal tofromElement
.- Specified by:
tailSet
in interfaceDoubleSortedSet
- See Also:
-
iterator
Description copied from interface:DoubleCollection
Returns a type-specific iterator on the elements of this collection.- Specified by:
iterator
in interfaceCollection<Double>
- Specified by:
iterator
in interfaceDoubleBidirectionalIterable
- Specified by:
iterator
in interfaceDoubleCollection
- Specified by:
iterator
in interfaceDoubleIterable
- Specified by:
iterator
in interfaceDoubleSet
- Specified by:
iterator
in interfaceDoubleSortedSet
- Specified by:
iterator
in interfaceIterable<Double>
- Specified by:
iterator
in interfaceSet<Double>
- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
-
iterator
Description copied from interface:DoubleSortedSet
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 interfaceDoubleSortedSet
- Parameters:
from
- an element to start from.- Returns:
- a bidirectional iterator on the element in this set, starting at the given element.
-
firstDouble
public double firstDouble()Description copied from interface:DoubleSortedSet
Returns the first (lowest) element currently in this set.- Specified by:
firstDouble
in interfaceDoubleSortedSet
- See Also:
-
lastDouble
public double lastDouble()Description copied from interface:DoubleSortedSet
Returns the last (highest) element currently in this set.- Specified by:
lastDouble
in interfaceDoubleSortedSet
- See Also:
-
first
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
first
in interfaceDoubleSortedSet
- Specified by:
first
in interfaceSortedSet<Double>
-
last
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
last
in interfaceDoubleSortedSet
- Specified by:
last
in interfaceSortedSet<Double>
-
subSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
subSet
in interfaceDoubleSortedSet
- Specified by:
subSet
in interfaceSortedSet<Double>
-
headSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
headSet
in interfaceDoubleSortedSet
- Specified by:
headSet
in interfaceSortedSet<Double>
-
tailSet
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
tailSet
in interfaceDoubleSortedSet
- Specified by:
tailSet
in interfaceSortedSet<Double>
-
add
public boolean add(double k) Description copied from interface:DoubleCollection
Ensures that this collection contains the specified element (optional operation).- Specified by:
add
in interfaceDoubleCollection
- See Also:
-
contains
public boolean contains(double k) Description copied from interface:DoubleCollection
Returnstrue
if this collection contains the specified element.- Specified by:
contains
in interfaceDoubleCollection
- See Also:
-
size
public int size()- Specified by:
size
in interfaceCollection<Double>
-
isEmpty
public boolean isEmpty()- Specified by:
isEmpty
in interfaceCollection<Double>
-
toDoubleArray
public double[] toDoubleArray()Description copied from interface:DoubleCollection
Returns a primitive type array containing the items of this collection.- Specified by:
toDoubleArray
in interfaceDoubleCollection
- Returns:
- a primitive type array containing the items of this collection.
- See Also:
-
toArray
- Specified by:
toArray
in interfaceCollection<Double>
-
toDoubleArray
Deprecated.Description copied from interface:DoubleCollection
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:
toDoubleArray
in interfaceDoubleCollection
- 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 double[] toArray(double[] a) Description copied from interface:DoubleCollection
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 interfaceDoubleCollection
- 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:DoubleCollection
Adds all elements of the given type-specific collection to this collection.- Specified by:
addAll
in interfaceDoubleCollection
- 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:DoubleCollection
Checks whether this collection contains all elements from the given type-specific collection.- Specified by:
containsAll
in interfaceDoubleCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection contains all elements of the argument.- See Also:
-
removeAll
Description copied from interface:DoubleCollection
Remove from this collection all elements in the given type-specific collection.- Specified by:
removeAll
in interfaceDoubleCollection
- 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:DoubleCollection
Retains in this collection only elements from the given type-specific collection.- Specified by:
retainAll
in interfaceDoubleCollection
- 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:DoubleCollection
- Specified by:
add
in interfaceCollection<Double>
- Specified by:
add
in interfaceDoubleCollection
-
contains
Deprecated.Description copied from interface:DoubleCollection
- Specified by:
contains
in interfaceCollection<Double>
- Specified by:
contains
in interfaceDoubleCollection
-
remove
Deprecated.Description copied from interface:DoubleCollection
- Specified by:
remove
in interfaceCollection<Double>
- Specified by:
remove
in interfaceDoubleCollection
-
doubleIterator
Description copied from interface:DoubleCollection
Returns a primitive iterator on the elements of this collection.This method is identical to
DoubleCollection.iterator()
, as the type-specific iterator is already compatible with the JDK's primitive iterators. It only exists for compatibility with the other primitive types'Collection
s that have use for widened iterators.- Specified by:
doubleIterator
in interfaceDoubleCollection
- Specified by:
doubleIterator
in interfaceDoubleIterable
- Returns:
- a primitive iterator on the elements of this collection.
-
doubleSpliterator
Description copied from interface:DoubleCollection
Returns a primitive spliterator on the elements of this collection.This method is identical to
DoubleCollection.spliterator()
, as the type-specific spliterator is already compatible with the JDK's primitive spliterators. It only exists for compatibility with the other primitive types'Collection
s that have use for widened spliterators.- Specified by:
doubleSpliterator
in interfaceDoubleCollection
- Specified by:
doubleSpliterator
in interfaceDoubleIterable
- Returns:
- a primitive spliterator on the elements of this collection.
-
doubleStream
Description copied from interface:DoubleCollection
Return a primitive stream over the elements, performing widening casts if needed.- Specified by:
doubleStream
in interfaceDoubleCollection
- Returns:
- a primitive stream over the elements.
- See Also:
-
doubleParallelStream
Description copied from interface:DoubleCollection
Return a parallel primitive stream over the elements, performing widening casts if needed.- Specified by:
doubleParallelStream
in interfaceDoubleCollection
- Returns:
- a parallel primitive stream over the elements.
- See Also:
-
toArray
public <T> T[] toArray(T[] a) - Specified by:
toArray
in interfaceCollection<Double>
-
spliterator
Description copied from interface:DoubleCollection
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<Double>
- Specified by:
spliterator
in interfaceDoubleCollection
- Specified by:
spliterator
in interfaceDoubleIterable
- Specified by:
spliterator
in interfaceIterable<Double>
- Returns:
- a type-specific spliterator on the elements of this collection.
-
stream
Deprecated.Description copied from interface:DoubleCollection
- Specified by:
stream
in interfaceCollection<Double>
- Specified by:
stream
in interfaceDoubleCollection
-
parallelStream
Deprecated.Description copied from interface:DoubleCollection
- Specified by:
parallelStream
in interfaceCollection<Double>
- Specified by:
parallelStream
in interfaceDoubleCollection
-
forEach
Description copied from interface:DoubleIterable
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 interfaceDoubleIterable
- Parameters:
action
- the action to be performed for each element.- See Also:
-
addAll
- Specified by:
addAll
in interfaceCollection<Double>
-
containsAll
- Specified by:
containsAll
in interfaceCollection<Double>
-
removeAll
- Specified by:
removeAll
in interfaceCollection<Double>
-
retainAll
- Specified by:
retainAll
in interfaceCollection<Double>
-
removeIf
Description copied from interface:DoubleCollection
Remove from this collection all elements which satisfy the given predicate.- Specified by:
removeIf
in interfaceDoubleCollection
- 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<Double>
-
toString
-
hashCode
public int hashCode()- Specified by:
hashCode
in interfaceCollection<Double>
- Overrides:
hashCode
in classObject
-
equals
- Specified by:
equals
in interfaceCollection<Double>
- Overrides:
equals
in classObject
-