Package it.unimi.dsi.fastutil.doubles
Class DoubleCollections
java.lang.Object
it.unimi.dsi.fastutil.doubles.DoubleCollections
public final class DoubleCollections
extends java.lang.Object
A class providing static methods and objects that do useful things with type-specific collections.
- See Also:
Collections
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDoubleCollections.EmptyCollectionAn immutable class representing an empty type-specific collection.static classDoubleCollections.IterableCollectionA collection wrapper class for iterables. -
Method Summary
Modifier and Type Method Description static DoubleCollectionasCollection(DoubleIterable iterable)Returns an unmodifiable collection backed by the specified iterable.static DoubleCollectionsynchronize(DoubleCollection c)Returns a synchronized collection backed by the specified collection.static DoubleCollectionsynchronize(DoubleCollection c, java.lang.Object sync)Returns a synchronized collection backed by the specified collection, using an assigned object to synchronize.static DoubleCollectionunmodifiable(DoubleCollection c)Returns an unmodifiable collection backed by the specified collection.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Method Details
-
synchronize
Returns a synchronized collection backed by the specified collection.- Parameters:
c- the collection to be wrapped in a synchronized collection.- Returns:
- a synchronized view of the specified collection.
- See Also:
Collections.synchronizedCollection(Collection)
-
synchronize
Returns a synchronized collection backed by the specified collection, using an assigned object to synchronize.- Parameters:
c- the collection to be wrapped in a synchronized collection.sync- an object that will be used to synchronize the list access.- Returns:
- a synchronized view of the specified collection.
- See Also:
Collections.synchronizedCollection(Collection)
-
unmodifiable
Returns an unmodifiable collection backed by the specified collection.- Parameters:
c- the collection to be wrapped in an unmodifiable collection.- Returns:
- an unmodifiable view of the specified collection.
- See Also:
Collections.unmodifiableCollection(Collection)
-
asCollection
Returns an unmodifiable collection backed by the specified iterable.- Parameters:
iterable- the iterable object to be wrapped in an unmodifiable collection.- Returns:
- an unmodifiable collection view of the specified iterable.
-