| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.ints |
Provides type-specific classes for integer elements or keys.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractIntListIterator
An abstract class facilitating the creation of type-specific list iterators.
|
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 |
AbstractIntList.intListIterator()
Deprecated.
|
IntListIterator |
IntLists.EmptyList.intListIterator()
Deprecated.
|
IntListIterator |
IntLists.SynchronizedList.intListIterator()
Deprecated.
|
IntListIterator |
IntLists.UnmodifiableList.intListIterator()
Deprecated.
|
IntListIterator |
IntList.intListIterator()
Deprecated.
As of
fastutil 5, replaced by IntList.listIterator(). |
IntListIterator |
AbstractIntList.intListIterator(int index)
Deprecated.
|
IntListIterator |
IntLists.EmptyList.intListIterator(int i)
Deprecated.
|
IntListIterator |
IntLists.SynchronizedList.intListIterator(int i)
Deprecated.
|
IntListIterator |
IntLists.UnmodifiableList.intListIterator(int i)
Deprecated.
|
IntListIterator |
IntList.intListIterator(int index)
Deprecated.
As of
fastutil 5, replaced by IntList.listIterator(int). |
IntListIterator |
IntSets.Singleton.iterator() |
IntListIterator |
IntLinkedOpenCustomHashSet.iterator() |
IntListIterator |
AbstractIntList.iterator() |
IntListIterator |
IntLists.EmptyList.iterator() |
IntListIterator |
IntLists.Singleton.iterator() |
IntListIterator |
IntLists.SynchronizedList.iterator() |
IntListIterator |
IntLists.UnmodifiableList.iterator() |
IntListIterator |
IntLinkedOpenHashSet.iterator() |
IntListIterator |
IntList.iterator()
Returns a type-specific iterator on the elements of this list (in proper sequence).
|
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 |
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 |
AbstractIntList.listIterator() |
IntListIterator |
IntLists.EmptyList.listIterator() |
IntListIterator |
IntLists.Singleton.listIterator() |
IntListIterator |
IntLists.SynchronizedList.listIterator() |
IntListIterator |
IntLists.UnmodifiableList.listIterator() |
IntListIterator |
IntList.listIterator()
Returns a type-specific list iterator on the list.
|
IntListIterator |
IntArrayList.listIterator(int index) |
IntListIterator |
AbstractIntList.listIterator(int index) |
IntListIterator |
AbstractIntList.IntSubList.listIterator(int index) |
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 |
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 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 |
|---|
IntBigListIterators.BigListIteratorListIterator(IntListIterator i) |
IntIterators.UnmodifiableListIterator(IntListIterator i) |
Copyright © 2013. All Rights Reserved.