Package | Description |
---|---|
com.landawn.abacus.util | |
com.landawn.abacus.util.stream |
Modifier and Type | Field and Description |
---|---|
static FloatIterator |
FloatIterator.EMPTY |
Modifier and Type | Method and Description |
---|---|
static FloatIterator |
Iterators.concat(float[]... a) |
static FloatIterator |
Iterators.concat(FloatIterator... a) |
static FloatIterator |
FloatIterator.empty() |
FloatIterator |
FloatList.iterator() |
static FloatIterator |
FloatIterator.of(float[] a) |
static FloatIterator |
FloatIterator.of(float[] a,
int fromIndex,
int toIndex) |
Modifier and Type | Method and Description |
---|---|
static FloatIterator |
Iterators.concat(FloatIterator... a) |
Modifier and Type | Method and Description |
---|---|
FloatIterator |
FloatStream.iterator() |
Modifier and Type | Method and Description |
---|---|
static FloatStream |
FloatStream.concat(FloatIterator... a) |
static FloatStream |
FloatStream.merge(FloatIterator a,
FloatIterator b,
FloatBiFunction<com.landawn.abacus.util.Nth> nextSelector) |
static FloatStream |
FloatStream.merge(FloatIterator a,
FloatIterator b,
FloatIterator c,
FloatBiFunction<com.landawn.abacus.util.Nth> nextSelector) |
static FloatStream |
FloatStream.of(FloatIterator iterator) |
static FloatStream |
FloatStream.zip(FloatIterator a,
FloatIterator b,
FloatBiFunction<java.lang.Float> zipFunction)
Zip together the "a" and "b" iterators until one of them runs out of values.
|
static <R> Stream<R> |
Stream.zip(FloatIterator a,
FloatIterator b,
FloatBiFunction<R> zipFunction)
Zip together the "a" and "b" iterators until one of them runs out of values.
|
static FloatStream |
FloatStream.zip(FloatIterator a,
FloatIterator b,
float valueForNoneA,
float valueForNoneB,
FloatBiFunction<java.lang.Float> zipFunction)
Zip together the "a" and "b" iterators until all of them runs out of values.
|
static <R> Stream<R> |
Stream.zip(FloatIterator a,
FloatIterator b,
float valueForNoneA,
float valueForNoneB,
FloatBiFunction<R> zipFunction)
Zip together the "a" and "b" iterators until all of them runs out of values.
|
static FloatStream |
FloatStream.zip(FloatIterator a,
FloatIterator b,
FloatIterator c,
float valueForNoneA,
float valueForNoneB,
float valueForNoneC,
FloatTriFunction<java.lang.Float> zipFunction)
Zip together the "a", "b" and "c" iterators until all of them runs out of values.
|
static <R> Stream<R> |
Stream.zip(FloatIterator a,
FloatIterator b,
FloatIterator c,
float valueForNoneA,
float valueForNoneB,
float valueForNoneC,
FloatTriFunction<R> zipFunction)
Zip together the "a", "b" and "c" iterators until all of them runs out of values.
|
static FloatStream |
FloatStream.zip(FloatIterator a,
FloatIterator b,
FloatIterator c,
FloatTriFunction<java.lang.Float> zipFunction)
Zip together the "a", "b" and "c" iterators until one of them runs out of values.
|
static <R> Stream<R> |
Stream.zip(FloatIterator a,
FloatIterator b,
FloatIterator c,
FloatTriFunction<R> zipFunction)
Zip together the "a", "b" and "c" iterators until one of them runs out of values.
|