// "Replace with reduce()" "true" import java.util.*; public class Main { public void testConjunctionBoxed() { List booleans = new ArrayList<>(); Boolean acc = true; for (Boolean bool : booleans) { acc &= bool; } } }