| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.bytes |
Provides type-specific classes for byte elements or keys.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractByteBigList
An abstract class providing basic methods for big lists implementing a type-specific big list interface.
|
static class |
AbstractByteBigList.ByteSubList
A class implementing a sublist view.
|
class |
ByteBigArrayBigList
A type-specific big list based on a big array; provides some additional methods that use polymorphism to avoid (un)boxing.
|
static class |
ByteBigLists.EmptyBigList
An immutable class representing an empty type-specific big list.
|
static class |
ByteBigLists.ListBigList
A class exposing a list as a big list.
|
static class |
ByteBigLists.Singleton
An immutable class representing a type-specific singleton big list.
|
static class |
ByteBigLists.SynchronizedBigList
A synchronized wrapper class for big lists.
|
static class |
ByteBigLists.UnmodifiableBigList
An unmodifiable wrapper class for big lists.
|
| Modifier and Type | Field and Description |
|---|---|
protected ByteBigList |
AbstractByteBigList.ByteSubList.l
The list this sublist restricts.
|
protected ByteBigList |
ByteBigLists.SynchronizedBigList.list |
protected ByteBigList |
ByteBigLists.UnmodifiableBigList.list |
| Modifier and Type | Method and Description |
|---|---|
static ByteBigList |
ByteBigLists.asBigList(ByteList list)
Returns a big list backed by the specified list.
|
static ByteBigList |
ByteBigLists.shuffle(ByteBigList l,
Random random)
Shuffles the specified big list using the specified pseudorandom number generator.
|
static ByteBigList |
ByteBigLists.singleton(byte element)
Returns a type-specific immutable big list containing only the specified element.
|
static ByteBigList |
ByteBigLists.singleton(Object element)
Returns a type-specific immutable big list containing only the specified element.
|
ByteBigList |
ByteBigLists.EmptyBigList.subList(long from,
long to) |
ByteBigList |
ByteBigLists.Singleton.subList(long from,
long to) |
ByteBigList |
ByteBigLists.SynchronizedBigList.subList(long from,
long to) |
ByteBigList |
ByteBigLists.UnmodifiableBigList.subList(long from,
long to) |
ByteBigList |
ByteBigLists.ListBigList.subList(long from,
long to) |
ByteBigList |
AbstractByteBigList.subList(long from,
long to) |
ByteBigList |
AbstractByteBigList.ByteSubList.subList(long from,
long to) |
ByteBigList |
ByteBigList.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. |
static ByteBigList |
ByteBigLists.synchronize(ByteBigList l)
Returns a synchronized type-specific big list backed by the given type-specific big list.
|
static ByteBigList |
ByteBigLists.synchronize(ByteBigList 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 ByteBigList |
ByteBigLists.unmodifiable(ByteBigList l)
Returns an unmodifiable type-specific big list backed by the given type-specific big list.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
ByteBigLists.EmptyBigList.addAll(ByteBigList c) |
boolean |
ByteBigLists.Singleton.addAll(ByteBigList c) |
boolean |
ByteBigLists.SynchronizedBigList.addAll(ByteBigList l) |
boolean |
ByteBigLists.UnmodifiableBigList.addAll(ByteBigList l) |
boolean |
ByteBigLists.ListBigList.addAll(ByteBigList c) |
boolean |
AbstractByteBigList.addAll(ByteBigList 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 |
ByteBigList.addAll(ByteBigList 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 |
ByteBigLists.EmptyBigList.addAll(long i,
ByteBigList c) |
boolean |
ByteBigLists.Singleton.addAll(long i,
ByteBigList c) |
boolean |
ByteBigLists.SynchronizedBigList.addAll(long index,
ByteBigList l) |
boolean |
ByteBigLists.UnmodifiableBigList.addAll(long index,
ByteBigList l) |
boolean |
ByteBigLists.ListBigList.addAll(long index,
ByteBigList c) |
boolean |
AbstractByteBigList.addAll(long index,
ByteBigList 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 |
AbstractByteBigList.ByteSubList.addAll(long index,
ByteBigList l) |
boolean |
ByteBigList.addAll(long index,
ByteBigList 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).
|
static ByteBigList |
ByteBigLists.shuffle(ByteBigList l,
Random random)
Shuffles the specified big list using the specified pseudorandom number generator.
|
static ByteBigList |
ByteBigLists.synchronize(ByteBigList l)
Returns a synchronized type-specific big list backed by the given type-specific big list.
|
static ByteBigList |
ByteBigLists.synchronize(ByteBigList 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 ByteBigList |
ByteBigLists.unmodifiable(ByteBigList l)
Returns an unmodifiable type-specific big list backed by the given type-specific big list.
|
| Constructor and Description |
|---|
ByteBigArrayBigList(ByteBigList l)
Creates a new big-array big list and fills it with a given type-specific list.
|
ByteSubList(ByteBigList l,
long from,
long to) |
SynchronizedBigList(ByteBigList l) |
SynchronizedBigList(ByteBigList l,
Object sync) |
UnmodifiableBigList(ByteBigList l) |
Copyright © 2020. All rights reserved.