// "Collapse loop with stream 'anyMatch()'" "true-preview" import java.util.List; public class Main { public boolean testPrimitiveMap(List data) { return data.stream().filter(str -> str.startsWith("xyz")).mapToInt(String::length).anyMatch(len -> len > 10); } }