// "Replace iteration with bulk 'List.replaceAll' call" "true" import java.util.*; import java.util.function.UnaryOperator; public class Main { static class MyList extends ArrayList { public void myReplaceAll(UnaryOperator operator) { super.replaceAll(operator::apply); } } }