| Package | Description |
|---|---|
| com.annimon.stream | |
| com.annimon.stream.operator |
| Modifier and Type | Method and Description |
|---|---|
static <T> Stream<T> |
Stream.merge(Iterator<? extends T> iterator1,
Iterator<? extends T> iterator2,
BiFunction<? super T,? super T,ObjMerge.MergeResult> selector)
Merges elements of two iterators according to the supplied selector function.
|
static <T> Stream<T> |
Stream.merge(Stream<? extends T> stream1,
Stream<? extends T> stream2,
BiFunction<? super T,? super T,ObjMerge.MergeResult> selector)
Merges elements of two streams according to the supplied selector function.
|
| Modifier and Type | Method and Description |
|---|---|
static ObjMerge.MergeResult |
ObjMerge.MergeResult.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjMerge.MergeResult[] |
ObjMerge.MergeResult.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Constructor and Description |
|---|
ObjMerge(Iterator<? extends T> iterator1,
Iterator<? extends T> iterator2,
BiFunction<? super T,? super T,ObjMerge.MergeResult> selector) |
Copyright © 2017. All rights reserved.