| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.booleans |
Provides type-specific classes for boolean elements or keys.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractBooleanListIterator
Deprecated.
As of fastutil 8 this class is no longer necessary, as its previous abstract
methods are now default methods of the type-specific interface.
|
static class |
BooleanIterators.EmptyIterator
A class returning no elements and a type-specific iterator interface.
|
static class |
BooleanIterators.UnmodifiableListIterator
An unmodifiable wrapper class for list iterators.
|
| Modifier and Type | Field and Description |
|---|---|
protected BooleanListIterator |
BooleanIterators.UnmodifiableListIterator.i |
protected BooleanListIterator |
BooleanBigListIterators.BigListIteratorListIterator.i |
| Modifier and Type | Method and Description |
|---|---|
static BooleanListIterator |
BooleanIterators.asBooleanIterator(ListIterator i)
Wraps a standard list iterator into a type-specific list iterator.
|
BooleanListIterator |
BooleanLists.EmptyList.iterator() |
BooleanListIterator |
BooleanLists.Singleton.iterator() |
BooleanListIterator |
BooleanLists.SynchronizedList.iterator() |
BooleanListIterator |
BooleanLists.UnmodifiableList.iterator() |
BooleanListIterator |
BooleanSets.Singleton.iterator() |
BooleanListIterator |
BooleanList.iterator()
Returns a type-specific iterator on the elements of this list.
|
BooleanListIterator |
AbstractBooleanList.iterator()
Returns a type-specific iterator on the elements of this collection.
|
BooleanListIterator |
BooleanLists.EmptyList.listIterator() |
BooleanListIterator |
BooleanLists.Singleton.listIterator() |
BooleanListIterator |
BooleanLists.SynchronizedList.listIterator() |
BooleanListIterator |
BooleanLists.UnmodifiableList.listIterator() |
BooleanListIterator |
BooleanList.listIterator()
Returns a type-specific list iterator on the list.
|
BooleanListIterator |
AbstractBooleanList.listIterator()
Returns a type-specific list iterator on the list.
|
BooleanListIterator |
BooleanLists.EmptyList.listIterator(int i) |
BooleanListIterator |
BooleanLists.Singleton.listIterator(int i) |
BooleanListIterator |
BooleanLists.SynchronizedList.listIterator(int i) |
BooleanListIterator |
BooleanLists.UnmodifiableList.listIterator(int i) |
BooleanListIterator |
BooleanList.listIterator(int index)
Returns a type-specific list iterator on the list starting at a given index.
|
BooleanListIterator |
AbstractBooleanList.listIterator(int index)
Returns a type-specific list iterator on the list starting at a given index.
|
BooleanListIterator |
AbstractBooleanList.BooleanSubList.listIterator(int index) |
BooleanListIterator |
BooleanArrayList.listIterator(int index) |
static BooleanListIterator |
BooleanIterators.singleton(boolean element)
Returns an immutable iterator that iterates just over the given element.
|
static BooleanListIterator |
BooleanIterators.unmodifiable(BooleanListIterator i)
Returns an unmodifiable list iterator backed by the specified list iterator.
|
static BooleanListIterator |
BooleanIterators.wrap(boolean[] array)
Wraps the given array into a type-specific list iterator.
|
static BooleanListIterator |
BooleanIterators.wrap(boolean[] array,
int offset,
int length)
Wraps the given part of an array into a type-specific list iterator.
|
| Modifier and Type | Method and Description |
|---|---|
static BooleanBigListIterator |
BooleanBigListIterators.asBigListIterator(BooleanListIterator i)
Returns a big-list iterator backed by the specified list iterator.
|
static BooleanListIterator |
BooleanIterators.unmodifiable(BooleanListIterator i)
Returns an unmodifiable list iterator backed by the specified list iterator.
|
| Constructor and Description |
|---|
BigListIteratorListIterator(BooleanListIterator i) |
UnmodifiableListIterator(BooleanListIterator i) |
Copyright © 2020. All rights reserved.