|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ReferenceBigList | |
---|---|
it.unimi.dsi.fastutil.objects | Provides type-specific classes for object elements or keys. |
Uses of ReferenceBigList in it.unimi.dsi.fastutil.objects |
---|
Classes in it.unimi.dsi.fastutil.objects that implement ReferenceBigList | |
---|---|
class |
AbstractReferenceBigList<K>
An abstract class providing basic methods for big lists implementing a type-specific big list interface. |
static class |
AbstractReferenceBigList.ReferenceSubList<K>
|
class |
ReferenceBigArrayBigList<K>
A type-specific big-array-based big list; provides some additional methods that use polymorphism to avoid (un)boxing. |
static class |
ReferenceBigLists.EmptyBigList<K>
An immutable class representing an empty type-specific big list. |
static class |
ReferenceBigLists.ListBigList<K>
A class exposing a list as a big list. |
static class |
ReferenceBigLists.Singleton<K>
An immutable class representing a type-specific singleton big list. |
static class |
ReferenceBigLists.SynchronizedBigList<K>
A synchronized wrapper class for big lists. |
static class |
ReferenceBigLists.UnmodifiableBigList<K>
An unmodifiable wrapper class for big lists. |
Fields in it.unimi.dsi.fastutil.objects declared as ReferenceBigList | |
---|---|
protected ReferenceBigList<K> |
AbstractReferenceBigList.ReferenceSubList.l
The list this sublist restricts. |
protected ReferenceBigList<K> |
ReferenceBigLists.SynchronizedBigList.list
|
protected ReferenceBigList<K> |
ReferenceBigLists.UnmodifiableBigList.list
|
Methods in it.unimi.dsi.fastutil.objects that return ReferenceBigList | ||
---|---|---|
static
|
ReferenceBigLists.asBigList(ReferenceList<K> list)
Returns a big list backed by the specified list. |
|
static
|
ReferenceBigLists.shuffle(ReferenceBigList<K> l,
Random random)
Shuffles the specified big list using the specified pseudorandom number generator. |
|
static
|
ReferenceBigLists.singleton(K element)
Returns a type-specific immutable big list containing only the specified element. |
|
ReferenceBigList<K> |
ReferenceBigList.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. |
|
ReferenceBigList<K> |
ReferenceBigLists.EmptyBigList.subList(long from,
long to)
|
|
ReferenceBigList<K> |
ReferenceBigLists.Singleton.subList(long from,
long to)
|
|
ReferenceBigList<K> |
ReferenceBigLists.SynchronizedBigList.subList(long from,
long to)
|
|
ReferenceBigList<K> |
ReferenceBigLists.UnmodifiableBigList.subList(long from,
long to)
|
|
ReferenceBigList<K> |
ReferenceBigLists.ListBigList.subList(long from,
long to)
|
|
ReferenceBigList<K> |
AbstractReferenceBigList.subList(long from,
long to)
|
|
ReferenceBigList<K> |
AbstractReferenceBigList.ReferenceSubList.subList(long from,
long to)
|
|
static
|
ReferenceBigLists.synchronize(ReferenceBigList<K> l)
Returns a synchronized type-specific big list backed by the given type-specific big list. |
|
static
|
ReferenceBigLists.synchronize(ReferenceBigList<K> 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
|
ReferenceBigLists.unmodifiable(ReferenceBigList<K> l)
Returns an unmodifiable type-specific big list backed by the given type-specific big list. |
Methods in it.unimi.dsi.fastutil.objects with parameters of type ReferenceBigList | ||
---|---|---|
boolean |
ReferenceBigLists.ListBigList.addAll(long index,
ReferenceBigList<K> c)
|
|
boolean |
ReferenceBigLists.ListBigList.addAll(ReferenceBigList<K> c)
|
|
static
|
ReferenceBigLists.shuffle(ReferenceBigList<K> l,
Random random)
Shuffles the specified big list using the specified pseudorandom number generator. |
|
static
|
ReferenceBigLists.synchronize(ReferenceBigList<K> l)
Returns a synchronized type-specific big list backed by the given type-specific big list. |
|
static
|
ReferenceBigLists.synchronize(ReferenceBigList<K> 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
|
ReferenceBigLists.unmodifiable(ReferenceBigList<K> l)
Returns an unmodifiable type-specific big list backed by the given type-specific big list. |
Constructors in it.unimi.dsi.fastutil.objects with parameters of type ReferenceBigList | |
---|---|
AbstractReferenceBigList.ReferenceSubList(ReferenceBigList<K> l,
long from,
long to)
|
|
ReferenceBigArrayBigList(ReferenceBigList<? extends K> l)
Creates a new big-array big list and fills it with a given type-specific list. |
|
ReferenceBigLists.SynchronizedBigList(ReferenceBigList<K> l)
|
|
ReferenceBigLists.SynchronizedBigList(ReferenceBigList<K> l,
Object sync)
|
|
ReferenceBigLists.UnmodifiableBigList(ReferenceBigList<K> l)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |