| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.bytes |
Provides type-specific classes for byte elements or keys.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractByteListIterator
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 |
ByteIterators.EmptyIterator
A class returning no elements and a type-specific iterator interface.
|
static class |
ByteIterators.UnmodifiableListIterator
An unmodifiable wrapper class for list iterators.
|
| Modifier and Type | Field and Description |
|---|---|
protected ByteListIterator |
ByteBigListIterators.BigListIteratorListIterator.i |
protected ByteListIterator |
ByteIterators.UnmodifiableListIterator.i |
| Modifier and Type | Method and Description |
|---|---|
static ByteListIterator |
ByteIterators.asByteIterator(ListIterator i)
Wraps a standard list iterator into a type-specific list iterator.
|
static ByteListIterator |
ByteIterators.fromTo(byte from,
byte to)
Creates a type-specific list iterator over an interval.
|
ByteListIterator |
ByteSets.Singleton.iterator() |
ByteListIterator |
ByteList.iterator()
Returns a type-specific iterator on the elements of this list.
|
ByteListIterator |
ByteLinkedOpenHashSet.iterator()
Returns a type-specific list iterator on the elements in this set, starting from the first element.
|
ByteListIterator |
ByteLists.EmptyList.iterator() |
ByteListIterator |
ByteLists.Singleton.iterator() |
ByteListIterator |
ByteLists.SynchronizedList.iterator() |
ByteListIterator |
ByteLists.UnmodifiableList.iterator() |
ByteListIterator |
AbstractByteList.iterator()
Returns a type-specific iterator on the elements of this collection.
|
ByteListIterator |
ByteLinkedOpenCustomHashSet.iterator()
Returns a type-specific list iterator on the elements in this set, starting from the first element.
|
ByteListIterator |
ByteLinkedOpenHashSet.iterator(byte from)
Returns a type-specific list iterator on the elements in this set, starting from a given element of the set.
|
ByteListIterator |
ByteLinkedOpenCustomHashSet.iterator(byte from)
Returns a type-specific list iterator on the elements in this set, starting from a given element of the set.
|
ByteListIterator |
ByteList.listIterator()
Returns a type-specific list iterator on the list.
|
ByteListIterator |
ByteLists.EmptyList.listIterator() |
ByteListIterator |
ByteLists.Singleton.listIterator() |
ByteListIterator |
ByteLists.SynchronizedList.listIterator() |
ByteListIterator |
ByteLists.UnmodifiableList.listIterator() |
ByteListIterator |
AbstractByteList.listIterator()
Returns a type-specific list iterator on the list.
|
ByteListIterator |
ByteList.listIterator(int index)
Returns a type-specific list iterator on the list starting at a given index.
|
ByteListIterator |
ByteLists.EmptyList.listIterator(int i) |
ByteListIterator |
ByteLists.Singleton.listIterator(int i) |
ByteListIterator |
ByteLists.SynchronizedList.listIterator(int i) |
ByteListIterator |
ByteLists.UnmodifiableList.listIterator(int i) |
ByteListIterator |
ByteArrayList.listIterator(int index) |
ByteListIterator |
AbstractByteList.listIterator(int index)
Returns a type-specific list iterator on the list starting at a given index.
|
ByteListIterator |
AbstractByteList.ByteSubList.listIterator(int index) |
static ByteListIterator |
ByteIterators.singleton(byte element)
Returns an immutable iterator that iterates just over the given element.
|
static ByteListIterator |
ByteIterators.unmodifiable(ByteListIterator i)
Returns an unmodifiable list iterator backed by the specified list iterator.
|
static ByteListIterator |
ByteIterators.wrap(byte[] array)
Wraps the given array into a type-specific list iterator.
|
static ByteListIterator |
ByteIterators.wrap(byte[] 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 ByteBigListIterator |
ByteBigListIterators.asBigListIterator(ByteListIterator i)
Returns a big-list iterator backed by the specified list iterator.
|
static ByteListIterator |
ByteIterators.unmodifiable(ByteListIterator i)
Returns an unmodifiable list iterator backed by the specified list iterator.
|
| Constructor and Description |
|---|
BigListIteratorListIterator(ByteListIterator i) |
UnmodifiableListIterator(ByteListIterator i) |
Copyright © 2020. All rights reserved.