Class LongLists.SynchronizedRandomAccessList
- All Implemented Interfaces:
LongCollection
,LongIterable
,LongList
,Serializable
,Comparable<List<? extends Long>>
,Iterable<Long>
,Collection<Long>
,List<Long>
,RandomAccess
,SequencedCollection<Long>
- Enclosing class:
LongLists
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionboolean
add
(long 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 Long> c) void
clear()
boolean
contains
(long 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) void
forEach
(LongConsumer action) Performs the given action for each element of this type-specificIterable
until all elements have been processed or the action throws an exception.boolean
isEmpty()
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.Deprecated.boolean
rem
(long k) Removes a single instance of the specified element from this collection, if it is present (optional operation).boolean
Deprecated.boolean
Remove from this collection all elements in the given type-specific collection.boolean
removeAll
(Collection<?> c) 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.subList
(int from, int to) Returns a type-specific view of the portion of this list from the indexfrom
, inclusive, to the indexto
, exclusive.Object[]
toArray()
long[]
toArray
(long[] 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) long[]
Returns a primitive type array containing the items of this collection.long[]
toLongArray
(long[] a) Deprecated.toString()
Methods inherited from class it.unimi.dsi.fastutil.longs.LongLists.SynchronizedList
add, add, addAll, addAll, addAll, addAll, addElements, addElements, compareTo, equals, get, getElements, getLong, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, listIterator, listIterator, remove, removeElements, removeIf, removeLong, replaceAll, set, set, setElements, setElements, setElements, size, sort, sort, unstableSort, unstableSort
Methods inherited from interface java.util.Collection
toArray
Methods inherited from interface java.util.List
addAll, addFirst, addLast, clear, containsAll, getFirst, getLast, isEmpty, removeAll, removeFirst, removeLast, retainAll, reversed, size, toArray, toArray
Methods inherited from interface it.unimi.dsi.fastutil.longs.LongCollection
addAll, contains, containsAll, longIterator, longParallelStream, longSpliterator, longStream, parallelStream, rem, removeAll, removeIf, removeIf, retainAll, stream, toArray, toLongArray, toLongArray
Methods inherited from interface it.unimi.dsi.fastutil.longs.LongIterable
forEach, forEach, forEach
Methods inherited from interface it.unimi.dsi.fastutil.longs.LongList
add, add, contains, remove, replaceAll, replaceAll, spliterator
-
Method Details
-
subList
Description copied from interface:LongList
Returns a type-specific view of the portion of this list from the indexfrom
, inclusive, to the indexto
, exclusive. -
add
public boolean add(long k) Description copied from interface:LongCollection
Ensures that this collection contains the specified element (optional operation).- Specified by:
add
in interfaceLongCollection
- See Also:
-
contains
public boolean contains(long k) Description copied from interface:LongCollection
Returnstrue
if this collection contains the specified element.- Specified by:
contains
in interfaceLongCollection
- See Also:
-
rem
public boolean rem(long k) Description copied from interface:LongCollection
Removes a single instance of the specified element from this collection, if it is present (optional operation).Note that this method should be called
remove()
, but the clash with the similarly named index-based method in theList
interface forces us to use a distinguished name. For simplicity, the set interfaces reinstatesremove()
.- Specified by:
rem
in interfaceLongCollection
- See Also:
-
size
public int size()- Specified by:
size
in interfaceCollection<Long>
-
isEmpty
public boolean isEmpty()- Specified by:
isEmpty
in interfaceCollection<Long>
-
toLongArray
public long[] toLongArray()Description copied from interface:LongCollection
Returns a primitive type array containing the items of this collection.- Specified by:
toLongArray
in interfaceLongCollection
- Returns:
- a primitive type array containing the items of this collection.
- See Also:
-
toArray
- Specified by:
toArray
in interfaceCollection<Long>
-
toLongArray
Deprecated.Description copied from interface:LongCollection
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:
toLongArray
in interfaceLongCollection
- 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 long[] toArray(long[] a) Description copied from interface:LongCollection
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 interfaceLongCollection
- 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:LongCollection
Adds all elements of the given type-specific collection to this collection.- Specified by:
addAll
in interfaceLongCollection
- 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:LongCollection
Checks whether this collection contains all elements from the given type-specific collection.- Specified by:
containsAll
in interfaceLongCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection contains all elements of the argument.- See Also:
-
removeAll
Description copied from interface:LongCollection
Remove from this collection all elements in the given type-specific collection.- Specified by:
removeAll
in interfaceLongCollection
- 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:LongCollection
Retains in this collection only elements from the given type-specific collection.- Specified by:
retainAll
in interfaceLongCollection
- 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:LongCollection
- Specified by:
add
in interfaceCollection<Long>
- Specified by:
add
in interfaceLongCollection
-
contains
Deprecated.Description copied from interface:LongCollection
- Specified by:
contains
in interfaceCollection<Long>
- Specified by:
contains
in interfaceLongCollection
-
remove
Deprecated.Description copied from interface:LongCollection
- Specified by:
remove
in interfaceCollection<Long>
- Specified by:
remove
in interfaceLongCollection
-
longIterator
Description copied from interface:LongCollection
Returns a primitive iterator on the elements of this collection.This method is identical to
LongCollection.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:
longIterator
in interfaceLongCollection
- Specified by:
longIterator
in interfaceLongIterable
- Returns:
- a primitive iterator on the elements of this collection.
-
longSpliterator
Description copied from interface:LongCollection
Returns a primitive spliterator on the elements of this collection.This method is identical to
LongCollection.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:
longSpliterator
in interfaceLongCollection
- Specified by:
longSpliterator
in interfaceLongIterable
- Returns:
- a primitive spliterator on the elements of this collection.
-
longStream
Description copied from interface:LongCollection
Return a primitive stream over the elements, performing widening casts if needed.- Specified by:
longStream
in interfaceLongCollection
- Returns:
- a primitive stream over the elements.
- See Also:
-
longParallelStream
Description copied from interface:LongCollection
Return a parallel primitive stream over the elements, performing widening casts if needed.- Specified by:
longParallelStream
in interfaceLongCollection
- Returns:
- a parallel primitive stream over the elements.
- See Also:
-
toArray
public <T> T[] toArray(T[] a) - Specified by:
toArray
in interfaceCollection<Long>
-
spliterator
Description copied from interface:LongCollection
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<Long>
- Specified by:
spliterator
in interfaceIterable<Long>
- Specified by:
spliterator
in interfaceLongCollection
- Specified by:
spliterator
in interfaceLongIterable
- Returns:
- a type-specific spliterator on the elements of this collection.
-
stream
Deprecated.Description copied from interface:LongCollection
- Specified by:
stream
in interfaceCollection<Long>
- Specified by:
stream
in interfaceLongCollection
-
parallelStream
Deprecated.Description copied from interface:LongCollection
- Specified by:
parallelStream
in interfaceCollection<Long>
- Specified by:
parallelStream
in interfaceLongCollection
-
forEach
Description copied from interface:LongIterable
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 interfaceLongIterable
- Parameters:
action
- the action to be performed for each element.- See Also:
-
addAll
- Specified by:
addAll
in interfaceCollection<Long>
-
containsAll
- Specified by:
containsAll
in interfaceCollection<Long>
-
removeAll
- Specified by:
removeAll
in interfaceCollection<Long>
-
retainAll
- Specified by:
retainAll
in interfaceCollection<Long>
-
clear
public void clear()- Specified by:
clear
in interfaceCollection<Long>
-
toString
-