// "Replace with reduce()" "true" import java.util.*; public class Main { public void testConjunction() { List booleans = new ArrayList<>(); boolean acc = booleans.stream().reduce(true, (a, b) -> a && b); } }