mirror of
https://github.com/github/codeql.git
synced 2026-04-28 02:05:14 +02:00
Java: Add stream concat example.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user