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