| Package | Description |
|---|---|
| it.unimi.dsi.fastutil.doubles |
Provides type-specific classes for double elements or keys.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractDoubleListIterator
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 |
DoubleIterators.EmptyIterator
A class returning no elements and a type-specific iterator interface.
|
static class |
DoubleIterators.UnmodifiableListIterator
An unmodifiable wrapper class for list iterators.
|
| Modifier and Type | Field and Description |
|---|---|
protected DoubleListIterator |
DoubleIterators.UnmodifiableListIterator.i |
protected DoubleListIterator |
DoubleBigListIterators.BigListIteratorListIterator.i |
| Modifier and Type | Method and Description |
|---|---|
static DoubleListIterator |
DoubleIterators.asDoubleIterator(ListIterator i)
Wraps a standard list iterator into a type-specific list iterator.
|
DoubleListIterator |
DoubleLinkedOpenHashSet.iterator()
Returns a type-specific list iterator on the elements in this set, starting from the first element.
|
DoubleListIterator |
DoubleSets.Singleton.iterator() |
DoubleListIterator |
DoubleLinkedOpenCustomHashSet.iterator()
Returns a type-specific list iterator on the elements in this set, starting from the first element.
|
DoubleListIterator |
DoubleList.iterator()
Returns a type-specific iterator on the elements of this list.
|
DoubleListIterator |
AbstractDoubleList.iterator()
Returns a type-specific iterator on the elements of this collection.
|
DoubleListIterator |
DoubleLists.EmptyList.iterator() |
DoubleListIterator |
DoubleLists.Singleton.iterator() |
DoubleListIterator |
DoubleLists.SynchronizedList.iterator() |
DoubleListIterator |
DoubleLists.UnmodifiableList.iterator() |
DoubleListIterator |
DoubleLinkedOpenHashSet.iterator(double from)
Returns a type-specific list iterator on the elements in this set, starting from a given element of the set.
|
DoubleListIterator |
DoubleLinkedOpenCustomHashSet.iterator(double from)
Returns a type-specific list iterator on the elements in this set, starting from a given element of the set.
|
DoubleListIterator |
DoubleList.listIterator()
Returns a type-specific list iterator on the list.
|
DoubleListIterator |
AbstractDoubleList.listIterator()
Returns a type-specific list iterator on the list.
|
DoubleListIterator |
DoubleLists.EmptyList.listIterator() |
DoubleListIterator |
DoubleLists.Singleton.listIterator() |
DoubleListIterator |
DoubleLists.SynchronizedList.listIterator() |
DoubleListIterator |
DoubleLists.UnmodifiableList.listIterator() |
DoubleListIterator |
DoubleArrayList.listIterator(int index) |
DoubleListIterator |
DoubleList.listIterator(int index)
Returns a type-specific list iterator on the list starting at a given index.
|
DoubleListIterator |
AbstractDoubleList.listIterator(int index)
Returns a type-specific list iterator on the list starting at a given index.
|
DoubleListIterator |
AbstractDoubleList.DoubleSubList.listIterator(int index) |
DoubleListIterator |
DoubleLists.EmptyList.listIterator(int i) |
DoubleListIterator |
DoubleLists.Singleton.listIterator(int i) |
DoubleListIterator |
DoubleLists.SynchronizedList.listIterator(int i) |
DoubleListIterator |
DoubleLists.UnmodifiableList.listIterator(int i) |
static DoubleListIterator |
DoubleIterators.singleton(double element)
Returns an immutable iterator that iterates just over the given element.
|
static DoubleListIterator |
DoubleIterators.unmodifiable(DoubleListIterator i)
Returns an unmodifiable list iterator backed by the specified list iterator.
|
static DoubleListIterator |
DoubleIterators.wrap(double[] array)
Wraps the given array into a type-specific list iterator.
|
static DoubleListIterator |
DoubleIterators.wrap(double[] 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 DoubleBigListIterator |
DoubleBigListIterators.asBigListIterator(DoubleListIterator i)
Returns a big-list iterator backed by the specified list iterator.
|
static DoubleListIterator |
DoubleIterators.unmodifiable(DoubleListIterator i)
Returns an unmodifiable list iterator backed by the specified list iterator.
|
| Constructor and Description |
|---|
BigListIteratorListIterator(DoubleListIterator i) |
UnmodifiableListIterator(DoubleListIterator i) |
Copyright © 2020. All rights reserved.