| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.doubles |
Provides type-specific classes for double elements or keys.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractDoubleBigList
An abstract class providing basic methods for big lists implementing a type-specific big list interface.
|
static class |
AbstractDoubleBigList.DoubleSubList
A class implementing a sublist view.
|
class |
DoubleBigArrayBigList
A type-specific big list based on a big array; provides some additional methods that use polymorphism to avoid (un)boxing.
|
static class |
DoubleBigLists.EmptyBigList
An immutable class representing an empty type-specific big list.
|
static class |
DoubleBigLists.ListBigList
A class exposing a list as a big list.
|
static class |
DoubleBigLists.Singleton
An immutable class representing a type-specific singleton big list.
|
static class |
DoubleBigLists.SynchronizedBigList
A synchronized wrapper class for big lists.
|
static class |
DoubleBigLists.UnmodifiableBigList
An unmodifiable wrapper class for big lists.
|
| Modifier and Type | Field and Description |
|---|---|
protected DoubleBigList |
AbstractDoubleBigList.DoubleSubList.l
The list this sublist restricts.
|
protected DoubleBigList |
DoubleBigLists.SynchronizedBigList.list |
protected DoubleBigList |
DoubleBigLists.UnmodifiableBigList.list |
| Modifier and Type | Method and Description |
|---|---|
static DoubleBigList |
DoubleBigLists.asBigList(DoubleList list)
Returns a big list backed by the specified list.
|
static DoubleBigList |
DoubleBigLists.shuffle(DoubleBigList l,
Random random)
Shuffles the specified big list using the specified pseudorandom number generator.
|
static DoubleBigList |
DoubleBigLists.singleton(double element)
Returns a type-specific immutable big list containing only the specified element.
|
static DoubleBigList |
DoubleBigLists.singleton(Object element)
Returns a type-specific immutable big list containing only the specified element.
|
DoubleBigList |
AbstractDoubleBigList.subList(long from,
long to) |
DoubleBigList |
AbstractDoubleBigList.DoubleSubList.subList(long from,
long to) |
DoubleBigList |
DoubleBigList.subList(long from,
long to)
Returns a type-specific view of the portion of this type-specific big list from the index
from, inclusive, to the index to, exclusive. |
DoubleBigList |
DoubleBigLists.EmptyBigList.subList(long from,
long to) |
DoubleBigList |
DoubleBigLists.Singleton.subList(long from,
long to) |
DoubleBigList |
DoubleBigLists.SynchronizedBigList.subList(long from,
long to) |
DoubleBigList |
DoubleBigLists.UnmodifiableBigList.subList(long from,
long to) |
DoubleBigList |
DoubleBigLists.ListBigList.subList(long from,
long to) |
static DoubleBigList |
DoubleBigLists.synchronize(DoubleBigList l)
Returns a synchronized type-specific big list backed by the given type-specific big list.
|
static DoubleBigList |
DoubleBigLists.synchronize(DoubleBigList l,
Object sync)
Returns a synchronized type-specific big list backed by the given type-specific big list, using an assigned object to synchronize.
|
static DoubleBigList |
DoubleBigLists.unmodifiable(DoubleBigList l)
Returns an unmodifiable type-specific big list backed by the given type-specific big list.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
AbstractDoubleBigList.addAll(DoubleBigList l)
Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).
|
boolean |
DoubleBigList.addAll(DoubleBigList c)
Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).
|
boolean |
DoubleBigLists.EmptyBigList.addAll(DoubleBigList c) |
boolean |
DoubleBigLists.Singleton.addAll(DoubleBigList c) |
boolean |
DoubleBigLists.SynchronizedBigList.addAll(DoubleBigList l) |
boolean |
DoubleBigLists.UnmodifiableBigList.addAll(DoubleBigList l) |
boolean |
DoubleBigLists.ListBigList.addAll(DoubleBigList c) |
boolean |
AbstractDoubleBigList.addAll(long index,
DoubleBigList l)
Inserts all of the elements in the specified type-specific big list into this type-specific big list at the specified position (optional operation).
|
boolean |
AbstractDoubleBigList.DoubleSubList.addAll(long index,
DoubleBigList l) |
boolean |
DoubleBigList.addAll(long index,
DoubleBigList c)
Inserts all of the elements in the specified type-specific big list into this type-specific big list at the specified position (optional operation).
|
boolean |
DoubleBigLists.EmptyBigList.addAll(long i,
DoubleBigList c) |
boolean |
DoubleBigLists.Singleton.addAll(long i,
DoubleBigList c) |
boolean |
DoubleBigLists.SynchronizedBigList.addAll(long index,
DoubleBigList l) |
boolean |
DoubleBigLists.UnmodifiableBigList.addAll(long index,
DoubleBigList l) |
boolean |
DoubleBigLists.ListBigList.addAll(long index,
DoubleBigList c) |
static DoubleBigList |
DoubleBigLists.shuffle(DoubleBigList l,
Random random)
Shuffles the specified big list using the specified pseudorandom number generator.
|
static DoubleBigList |
DoubleBigLists.synchronize(DoubleBigList l)
Returns a synchronized type-specific big list backed by the given type-specific big list.
|
static DoubleBigList |
DoubleBigLists.synchronize(DoubleBigList l,
Object sync)
Returns a synchronized type-specific big list backed by the given type-specific big list, using an assigned object to synchronize.
|
static DoubleBigList |
DoubleBigLists.unmodifiable(DoubleBigList l)
Returns an unmodifiable type-specific big list backed by the given type-specific big list.
|
| Constructor and Description |
|---|
DoubleBigArrayBigList(DoubleBigList l)
Creates a new big-array big list and fills it with a given type-specific list.
|
DoubleSubList(DoubleBigList l,
long from,
long to) |
SynchronizedBigList(DoubleBigList l) |
SynchronizedBigList(DoubleBigList l,
Object sync) |
UnmodifiableBigList(DoubleBigList l) |
Copyright © 2020. All rights reserved.