mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-03 11:47:50 +07:00
10 lines
259 B
Java
10 lines
259 B
Java
// "Collapse loop with stream 'reduce()'" "true-preview"
|
|
|
|
import java.util.*;
|
|
|
|
public class Main {
|
|
public void testConjunctionBoxed() {
|
|
List<Boolean> booleans = new ArrayList<>();
|
|
Boolean acc = booleans.stream().reduce(true, (a, b) -> a && b);
|
|
}
|
|
} |