| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.ints |
Provides type-specific classes for integer elements or keys.
|
| it.unimi.dsi.fastutil.longs |
Provides type-specific classes for long elements or keys.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
IntBidirectionalIterator
A type-specific bidirectional iterator; provides an additional method to avoid (un)boxing,
and the possibility to skip elements backwards.
|
interface |
IntListIterator
A type-specific bidirectional iterator that is also a
ListIterator. |
| Modifier and Type | Class and Description |
|---|---|
protected static class |
AbstractInt2ObjectSortedMap.KeySetIterator<V>
A wrapper exhibiting a map iterator as an iterator on keys.
|
class |
AbstractIntBidirectionalIterator
An abstract class facilitating the creation of type-specific bidirectional iterators.
|
class |
AbstractIntIterator
An abstract class facilitating the creation of type-specific iterators.
|
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.UnmodifiableBidirectionalIterator
An unmodifiable wrapper class for bidirectional iterators.
|
static class |
IntIterators.UnmodifiableIterator
An unmodifiable wrapper class for iterators.
|
static class |
IntIterators.UnmodifiableListIterator
An unmodifiable wrapper class for list iterators.
|
| Modifier and Type | Field and Description |
|---|---|
protected IntIterator |
IntIterators.UnmodifiableIterator.i |
| Modifier and Type | Method and Description |
|---|---|
static IntIterator |
IntIterators.asIntIterator(Iterator i)
Wraps a standard iterator into a type-specific iterator.
|
static IntIterator |
IntIterators.concat(IntIterator[] a)
Concatenates all iterators contained in an array.
|
static IntIterator |
IntIterators.concat(IntIterator[] a,
int offset,
int length)
Concatenates a sequence of iterators contained in an array.
|
IntIterator |
IntLists.EmptyList.intIterator()
Deprecated.
|
IntIterator |
IntCollections.SynchronizedCollection.intIterator()
Deprecated.
|
IntIterator |
IntCollections.UnmodifiableCollection.intIterator()
Deprecated.
|
IntIterator |
IntCollections.IterableCollection.intIterator()
Deprecated.
|
IntIterator |
IntCollection.intIterator()
Deprecated.
As of
fastutil 5, replaced by IntCollection.iterator(). |
IntIterator |
AbstractIntCollection.intIterator()
Deprecated.
|
IntIterator |
IntSet.iterator()
Returns a type-specific iterator on the elements of this set.
|
IntIterator |
IntIterable.iterator()
Returns a type-specific iterator.
|
IntIterator |
IntCollections.SynchronizedCollection.iterator() |
IntIterator |
IntCollections.UnmodifiableCollection.iterator() |
IntIterator |
IntCollections.IterableCollection.iterator() |
IntIterator |
IntCollection.iterator()
Returns a type-specific iterator on the elements of this collection.
|
IntIterator |
IntArraySet.iterator() |
abstract IntIterator |
AbstractIntSet.iterator() |
abstract IntIterator |
AbstractIntCollection.iterator() |
static IntIterator |
IntIterators.unmodifiable(IntIterator i)
Returns an unmodifiable iterator backed by the specified iterator.
|
| Modifier and Type | Method and Description |
|---|---|
static IntIterator |
IntIterators.concat(IntIterator[] a)
Concatenates all iterators contained in an array.
|
static IntIterator |
IntIterators.concat(IntIterator[] a,
int offset,
int length)
Concatenates a sequence of iterators contained in an array.
|
static IntList |
IntIterators.pour(IntIterator i)
Pours an iterator, returning a type-specific list.
|
static IntList |
IntIterators.pour(IntIterator i,
int max)
Pours an iterator, returning a type-specific list, with a limit on the number of elements.
|
static int |
IntIterators.pour(IntIterator i,
IntCollection s)
Pours an iterator into a type-specific collection.
|
static int |
IntIterators.pour(IntIterator i,
IntCollection s,
int max)
Pours an iterator into a type-specific collection, with a limit on the number of elements.
|
static IntIterator |
IntIterators.unmodifiable(IntIterator i)
Returns an unmodifiable iterator backed by the specified iterator.
|
static int[] |
IntIterators.unwrap(IntIterator i)
Unwraps an iterator, returning an array.
|
static int[] |
IntIterators.unwrap(IntIterator i,
int max)
Unwraps an iterator, returning an array, with a limit on the number of elements.
|
static int |
IntIterators.unwrap(IntIterator i,
int[] array)
Unwraps an iterator into an array.
|
static int |
IntIterators.unwrap(IntIterator i,
int[] array,
int offset,
int max)
Unwraps an iterator into an array starting at a given offset for a given number of elements.
|
static long |
IntIterators.unwrap(IntIterator i,
IntCollection c)
Unwraps an iterator into a type-specific collection.
|
static int |
IntIterators.unwrap(IntIterator i,
IntCollection c,
int max)
Unwraps an iterator into a type-specific collection, with a limit on the number of elements.
|
| Constructor and Description |
|---|
IntArrayList(IntIterator i)
Creates a new array list and fills it with the elements returned by a type-specific iterator..
|
UnmodifiableIterator(IntIterator i) |
| Modifier and Type | Method and Description |
|---|---|
static LongIterator |
LongIterators.wrap(IntIterator iterator)
Returns an iterator backed by the specified integer iterator.
|
| Constructor and Description |
|---|
IntIteratorWrapper(IntIterator iterator) |
Copyright © 2016. All rights reserved.