public class Streams extends Object
| Constructor and Description |
|---|
Streams() |
| Modifier and Type | Method and Description |
|---|---|
static <T> Stream<T> |
stream(Iterator<T> it) |
static <A,B,C> Stream<C> |
zip(Stream<? extends A> a,
Stream<? extends B> b,
BiFunction<? super A,? super B,? extends C> zipper)
Implementation from https://stackoverflow.com/a/23529010/487903
|
Copyright © 2019. All rights reserved.