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