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