Package | Description |
---|---|
com.landawn.abacus.util.function | |
com.landawn.abacus.util.stream |
Modifier and Type | Method and Description |
---|---|
default <V> ByteNFunction<V> |
ByteNFunction.andThen(Function<? super R,? extends V> after) |
Modifier and Type | Method and Description |
---|---|
static ByteStream |
ByteStream.zip(Collection<? extends ByteStream> c,
byte[] valuesForNone,
ByteNFunction<Byte> zipFunction)
Zip together the iterators until all of them runs out of values.
|
static <R> Stream<R> |
Stream.zip(Collection<? extends ByteStream> c,
byte[] valuesForNone,
ByteNFunction<R> zipFunction)
Zip together the iterators until all of them runs out of values.
|
static ByteStream |
ByteStream.zip(Collection<? extends ByteStream> c,
ByteNFunction<Byte> zipFunction)
Zip together the iterators until one of them runs out of values.
|
static <R> Stream<R> |
Stream.zip(Collection<? extends ByteStream> c,
ByteNFunction<R> zipFunction)
Zip together the iterators until one of them runs out of values.
|
Copyright © 2020. All rights reserved.