public final class LongIterators
extends java.lang.Object
Iterator
Modifier and Type | Class and Description |
---|---|
static class |
LongIterators.AbstractIndexBasedIterator
A skeletal implementation for an iterator backed by an index-based data store.
|
static class |
LongIterators.AbstractIndexBasedListIterator
A skeletal implementation for a list-iterator backed by an index-based data store.
|
static class |
LongIterators.EmptyIterator
A class returning no elements and a type-specific iterator interface.
|
static class |
LongIterators.UnmodifiableBidirectionalIterator
An unmodifiable wrapper class for bidirectional iterators.
|
static class |
LongIterators.UnmodifiableIterator
An unmodifiable wrapper class for iterators.
|
static class |
LongIterators.UnmodifiableListIterator
An unmodifiable wrapper class for list iterators.
|
Modifier and Type | Field and Description |
---|---|
static LongIterators.EmptyIterator |
EMPTY_ITERATOR
An empty iterator.
|
Modifier and Type | Method and Description |
---|---|
static boolean |
all(LongIterator iterator,
java.util.function.LongPredicate predicate)
Returns whether all elements returned by the given iterator satisfy the given predicate.
|
static boolean |
any(LongIterator iterator,
java.util.function.LongPredicate predicate)
Returns whether an element returned by the given iterator satisfies the given predicate.
|
static LongIterator |
asLongIterator(java.util.Iterator i)
Wraps a standard iterator into a type-specific iterator.
|
static LongListIterator |
asLongIterator(java.util.ListIterator i)
Wraps a standard list iterator into a type-specific list iterator.
|
static LongIterator |
concat(LongIterator... a)
Concatenates all iterators contained in an array.
|
static LongIterator |
concat(LongIterator[] a,
int offset,
int length)
Concatenates a sequence of iterators contained in an array.
|
static LongBidirectionalIterator |
fromTo(long from,
long to)
Creates a type-specific bidirectional iterator over an interval.
|
static int |
indexOf(LongIterator iterator,
java.util.function.LongPredicate predicate)
Returns the index of the first element returned by the given iterator that satisfies the given predicate, or −1 if
no such element was found.
|
static LongList |
pour(LongIterator i)
Pours an iterator, returning a type-specific list.
|
static LongList |
pour(LongIterator i,
int max)
Pours an iterator, returning a type-specific list, with a limit on the number of elements.
|
static int |
pour(LongIterator i,
LongCollection s)
Pours an iterator into a type-specific collection.
|
static int |
pour(LongIterator i,
LongCollection s,
int max)
Pours an iterator into a type-specific collection, with a limit on the number of elements.
|
static LongListIterator |
singleton(long element)
Returns an immutable iterator that iterates just over the given element.
|
static LongBidirectionalIterator |
unmodifiable(LongBidirectionalIterator i)
Returns an unmodifiable bidirectional iterator backed by the specified bidirectional iterator.
|
static LongIterator |
unmodifiable(LongIterator i)
Returns an unmodifiable iterator backed by the specified iterator.
|
static LongListIterator |
unmodifiable(LongListIterator i)
Returns an unmodifiable list iterator backed by the specified list iterator.
|
static long[] |
unwrap(LongIterator i)
Unwraps an iterator, returning an array.
|
static long[] |
unwrap(LongIterator i,
int max)
Unwraps an iterator, returning an array, with a limit on the number of elements.
|
static int |
unwrap(LongIterator i,
long[] array)
Unwraps an iterator into an array.
|
static long |
unwrap(LongIterator i,
long[][] array)
Unwraps an iterator into a big array.
|
static long |
unwrap(LongIterator i,
long[][] array,
long offset,
long max)
Unwraps an iterator into a big array starting at a given offset for a given number of elements.
|
static int |
unwrap(LongIterator i,
long[] array,
int offset,
int max)
Unwraps an iterator into an array starting at a given offset for a given number of elements.
|
static long |
unwrap(LongIterator i,
LongCollection c)
Unwraps an iterator into a type-specific collection.
|
static int |
unwrap(LongIterator i,
LongCollection c,
int max)
Unwraps an iterator into a type-specific collection, with a limit on the number of elements.
|
static long[][] |
unwrapBig(LongIterator i)
Unwraps an iterator, returning a big array.
|
static long[][] |
unwrapBig(LongIterator i,
long max)
Unwraps an iterator, returning a big array, with a limit on the number of elements.
|
static LongIterator |
wrap(ByteIterator iterator)
Returns an iterator backed by the specified byte iterator.
|
static LongIterator |
wrap(CharIterator iterator)
Returns an iterator backed by the specified char iterator.
|
static LongIterator |
wrap(IntIterator iterator)
Returns an iterator backed by the specified integer iterator.
|
static LongListIterator |
wrap(long[] array)
Wraps the given array into a type-specific list iterator.
|
static LongListIterator |
wrap(long[] array,
int offset,
int length)
Wraps the given part of an array into a type-specific list iterator.
|
static LongIterator |
wrap(ShortIterator iterator)
Returns an iterator backed by the specified short iterator.
|
public static final LongIterators.EmptyIterator EMPTY_ITERATOR
The class of this objects represent an abstract empty iterator that can iterate as a type-specific (list) iterator.
public static LongListIterator singleton(long element)
element
- the only element to be returned by a type-specific list iterator.element
.public static LongListIterator wrap(long[] array, int offset, int length)
The type-specific list iterator returned by this method will iterate
length
times, returning consecutive elements of the given
array starting from the one with index offset
.
array
- an array to wrap into a type-specific list iterator.offset
- the first element of the array to be returned.length
- the number of elements to return.length
elements of array
starting at position offset
.public static LongListIterator wrap(long[] array)
The type-specific list iterator returned by this method will return all elements of the given array.
array
- an array to wrap into a type-specific list iterator.array
.public static int unwrap(LongIterator i, long[] array, int offset, int max)
This method iterates over the given type-specific iterator and stores the elements
returned, up to a maximum of length
, in the given array starting at offset
.
The number of actually unwrapped elements is returned (it may be less than max
if
the iterator emits less than max
elements).
i
- a type-specific iterator.array
- an array to contain the output of the iterator.offset
- the first element of the array to be returned.max
- the maximum number of elements to unwrap.public static int unwrap(LongIterator i, long[] array)
This method iterates over the given type-specific iterator and stores the elements returned in the given array. The iteration will stop when the iterator has no more elements or when the end of the array has been reached.
i
- a type-specific iterator.array
- an array to contain the output of the iterator.public static long[] unwrap(LongIterator i, int max)
This method iterates over the given type-specific iterator and returns an array
containing the elements returned by the iterator. At most max
elements
will be returned.
i
- a type-specific iterator.max
- the maximum number of elements to be unwrapped.max
).public static long[] unwrap(LongIterator i)
This method iterates over the given type-specific iterator and returns an array containing the elements returned by the iterator.
i
- a type-specific iterator.public static long unwrap(LongIterator i, long[][] array, long offset, long max)
This method iterates over the given type-specific iterator and stores the elements
returned, up to a maximum of length
, in the given big array starting at offset
.
The number of actually unwrapped elements is returned (it may be less than max
if
the iterator emits less than max
elements).
i
- a type-specific iterator.array
- a big array to contain the output of the iterator.offset
- the first element of the array to be returned.max
- the maximum number of elements to unwrap.public static long unwrap(LongIterator i, long[][] array)
This method iterates over the given type-specific iterator and stores the elements returned in the given big array. The iteration will stop when the iterator has no more elements or when the end of the array has been reached.
i
- a type-specific iterator.array
- a big array to contain the output of the iterator.public static int unwrap(LongIterator i, LongCollection c, int max)
This method iterates over the given type-specific iterator and stores the elements
returned, up to a maximum of max
, in the given type-specific collection.
The number of actually unwrapped elements is returned (it may be less than max
if
the iterator emits less than max
elements).
i
- a type-specific iterator.c
- a type-specific collection array to contain the output of the iterator.max
- the maximum number of elements to unwrap.public static long[][] unwrapBig(LongIterator i, long max)
This method iterates over the given type-specific iterator and returns a big array
containing the elements returned by the iterator. At most max
elements
will be returned.
i
- a type-specific iterator.max
- the maximum number of elements to be unwrapped.max
).public static long[][] unwrapBig(LongIterator i)
This method iterates over the given type-specific iterator and returns a big array containing the elements returned by the iterator.
i
- a type-specific iterator.public static long unwrap(LongIterator i, LongCollection c)
This method iterates over the given type-specific iterator and stores the elements returned in the given type-specific collection. The returned count on the number unwrapped elements is a long, so that it will work also with very large collections.
i
- a type-specific iterator.c
- a type-specific collection to contain the output of the iterator.public static int pour(LongIterator i, LongCollection s, int max)
This method iterates over the given type-specific iterator and adds
the returned elements to the given collection (up to max
).
i
- a type-specific iterator.s
- a type-specific collection.max
- the maximum number of elements to be poured.public static int pour(LongIterator i, LongCollection s)
This method iterates over the given type-specific iterator and adds the returned elements to the given collection.
i
- a type-specific iterator.s
- a type-specific collection.public static LongList pour(LongIterator i, int max)
This method iterates over the given type-specific iterator and returns
a type-specific list containing the returned elements (up to max
). Iteration
on the returned list is guaranteed to produce the elements in the same order
in which they appeared in the iterator.
i
- a type-specific iterator.max
- the maximum number of elements to be poured.max
.public static LongList pour(LongIterator i)
This method iterates over the given type-specific iterator and returns a list containing the returned elements. Iteration on the returned list is guaranteed to produce the elements in the same order in which they appeared in the iterator.
i
- a type-specific iterator.public static LongIterator asLongIterator(java.util.Iterator i)
This method wraps a standard iterator into a type-specific one which will handle the
type conversions for you. Of course, any attempt to wrap an iterator returning the
instances of the wrong class will generate a ClassCastException
. The
returned iterator is backed by i
: changes to one of the iterators
will affect the other, too.
i
- an iterator.i
.i
is already type-specific, it will returned and no new object
will be generated.public static LongListIterator asLongIterator(java.util.ListIterator i)
This method wraps a standard list iterator into a type-specific one
which will handle the type conversions for you. Of course, any attempt
to wrap an iterator returning the instances of the wrong class will
generate a ClassCastException
. The
returned iterator is backed by i
: changes to one of the iterators
will affect the other, too.
If i
is already type-specific, it will returned and no new object
will be generated.
i
- a list iterator.i
.public static boolean any(LongIterator iterator, java.util.function.LongPredicate predicate)
Short circuit evaluation is performed; the first true
from the predicate terminates the loop.
iterator
satisfies predicate
.public static boolean all(LongIterator iterator, java.util.function.LongPredicate predicate)
Short circuit evaluation is performed; the first false
from the predicate terminates the loop.
iterator
satisfy predicate
.public static int indexOf(LongIterator iterator, java.util.function.LongPredicate predicate)
The next element returned by the iterator always considered element 0, even for
ListIterators
. In other words ListIterator.nextIndex
is ignored.
iterator
that satisfies predicate
, or −1 if
no such element was found.public static LongBidirectionalIterator fromTo(long from, long to)
The type-specific bidirectional iterator returned by this method will return the
elements from
, from+1
,…, to-1
.
Note that all other type-specific interval iterator are list
iterators. Of course, this is not possible with longs as the index
returned by nextIndex()
/previousIndex()
would exceed an integer.
from
- the starting element (inclusive).to
- the ending element (exclusive).from
to to
.public static LongIterator concat(LongIterator... a)
This method returns an iterator that will enumerate in order the elements returned by all iterators contained in the given array.
a
- an array of iterators.public static LongIterator concat(LongIterator[] a, int offset, int length)
This method returns an iterator that will enumerate in order the elements returned
by a[offset]
, then those returned
by a[offset + 1]
, and so on up to
a[offset + length - 1]
.
a
- an array of iterators.offset
- the index of the first iterator to concatenate.length
- the number of iterators to concatenate.length
elements of a
starting at offset
.public static LongIterator unmodifiable(LongIterator i)
i
- the iterator to be wrapped in an unmodifiable iterator.public static LongBidirectionalIterator unmodifiable(LongBidirectionalIterator i)
i
- the bidirectional iterator to be wrapped in an unmodifiable bidirectional iterator.public static LongListIterator unmodifiable(LongListIterator i)
i
- the list iterator to be wrapped in an unmodifiable list iterator.public static LongIterator wrap(ByteIterator iterator)
iterator
- a byte iterator.public static LongIterator wrap(ShortIterator iterator)
iterator
- a short iterator.public static LongIterator wrap(CharIterator iterator)
WARNING: This is not the same as converting the source to a sequence
of code points. This returned instance literally performs (int)(charValue)
casts.
Surrogate pairs will be left as separate elements instead of combined into a single element
with the code point it represents. See Character
for more discussion on code points,
char values, and surrogate pairs.
iterator
- a char iterator.public static LongIterator wrap(IntIterator iterator)
iterator
- an integer iterator.