Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 716d6ae

Browse files
committed
Java: Add stream concat example.
1 parent 9641403 commit 716d6ae

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

  • java/ql/test/utils/model-generator/typebasedflow/p

java/ql/test/utils/model-generator/typebasedflow/p/Stream.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,9 @@ public <R> R collect(Supplier<R> supplier, BiConsumer<R, ? super T> accumulator,
2323
// throw null;
2424
// }
2525

26-
// public static <T> Stream<T> concat(Stream<? extends T> a, Stream<? extends T>
27-
// b) {
28-
// throw null;
29-
// }
26+
public static <T> Stream<T> concat(Stream<? extends T> a, Stream<? extends T> b) {
27+
throw null;
28+
}
3029

3130
public Stream<T> distinct() {
3231
throw null;

0 commit comments

Comments
 (0)