// "Collapse loop with stream 'allMatch()'" "true-preview" import java.util.List; public class Main { boolean find(List data, boolean other, boolean third) { return data.stream().map(String::trim).allMatch(trimmed -> trimmed.startsWith("xyz")) && (other || third); } }