Files
2022-12-23 13:26:29 +00:00

10 lines
289 B
Java

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