| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.ints |
Provides type-specific classes for integer elements or keys.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractIntListIterator
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 |
IntIterators.EmptyIterator
A class returning no elements and a type-specific iterator interface.
|
static class |
IntIterators.UnmodifiableListIterator
An unmodifiable wrapper class for list iterators.
|
| Modifier and Type | Field and Description |
|---|---|
protected IntListIterator |
IntIterators.UnmodifiableListIterator.i |
protected IntListIterator |
IntBigListIterators.BigListIteratorListIterator.i |
| Modifier and Type | Method and Description |
|---|---|
static IntListIterator |
IntIterators.asIntIterator(ListIterator i)
Wraps a standard list iterator into a type-specific list iterator.
|
static IntListIterator |
IntIterators.fromTo(int from,
int to)
Creates a type-specific list iterator over an interval.
|
IntListIterator |
IntLinkedOpenHashSet.iterator()
Returns a type-specific list iterator on the elements in this set, starting from the first element.
|
IntListIterator |
IntLists.EmptyList.iterator() |
IntListIterator |
IntLists.Singleton.iterator() |
IntListIterator |
IntLists.SynchronizedList.iterator() |
IntListIterator |
IntLists.UnmodifiableList.iterator() |
IntListIterator |
AbstractIntList.iterator()
Returns a type-specific iterator on the elements of this collection.
|
IntListIterator |
IntSets.Singleton.iterator() |
IntListIterator |
IntLinkedOpenCustomHashSet.iterator()
Returns a type-specific list iterator on the elements in this set, starting from the first element.
|
IntListIterator |
IntList.iterator()
Returns a type-specific iterator on the elements of this list.
|
IntListIterator |
IntLinkedOpenHashSet.iterator(int from)
Returns a type-specific list iterator on the elements in this set, starting from a given element of the set.
|
IntListIterator |
IntLinkedOpenCustomHashSet.iterator(int from)
Returns a type-specific list iterator on the elements in this set, starting from a given element of the set.
|
IntListIterator |
IntLists.EmptyList.listIterator() |
IntListIterator |
IntLists.Singleton.listIterator() |
IntListIterator |
IntLists.SynchronizedList.listIterator() |
IntListIterator |
IntLists.UnmodifiableList.listIterator() |
IntListIterator |
AbstractIntList.listIterator()
Returns a type-specific list iterator on the list.
|
IntListIterator |
IntList.listIterator()
Returns a type-specific list iterator on the list.
|
IntListIterator |
IntLists.EmptyList.listIterator(int i) |
IntListIterator |
IntLists.Singleton.listIterator(int i) |
IntListIterator |
IntLists.SynchronizedList.listIterator(int i) |
IntListIterator |
IntLists.UnmodifiableList.listIterator(int i) |
IntListIterator |
IntArrayList.listIterator(int index) |
IntListIterator |
AbstractIntList.listIterator(int index)
Returns a type-specific list iterator on the list starting at a given index.
|
IntListIterator |
AbstractIntList.IntSubList.listIterator(int index) |
IntListIterator |
IntList.listIterator(int index)
Returns a type-specific list iterator on the list starting at a given index.
|
static IntListIterator |
IntIterators.singleton(int element)
Returns an immutable iterator that iterates just over the given element.
|
static IntListIterator |
IntIterators.unmodifiable(IntListIterator i)
Returns an unmodifiable list iterator backed by the specified list iterator.
|
static IntListIterator |
IntIterators.wrap(int[] array)
Wraps the given array into a type-specific list iterator.
|
static IntListIterator |
IntIterators.wrap(int[] 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 IntBigListIterator |
IntBigListIterators.asBigListIterator(IntListIterator i)
Returns a big-list iterator backed by the specified list iterator.
|
static IntListIterator |
IntIterators.unmodifiable(IntListIterator i)
Returns an unmodifiable list iterator backed by the specified list iterator.
|
| Constructor and Description |
|---|
BigListIteratorListIterator(IntListIterator i) |
UnmodifiableListIterator(IntListIterator i) |
Copyright © 2020. All rights reserved.