Java: Add stream concat example.

This commit is contained in:
Michael Nebel
2022-10-07 10:28:30 +02:00
parent 96414034f9
commit 716d6aeeee

View File

@@ -23,10 +23,9 @@ public class Stream<T> {
// throw null;
// }
// public static <T> Stream<T> concat(Stream<? extends T> a, Stream<? extends T>
// b) {
// throw null;
// }
public static <T> Stream<T> concat(Stream<? extends T> a, Stream<? extends T> b) {
throw null;
}
public Stream<T> distinct() {
throw null;