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