Files
2024-04-11 14:46:30 +00:00

11 lines
239 B
Java

// "Replace with 'stream.anyMatch()'" "true-preview"
import java.util.Arrays;
class Test {
boolean anyMatch() {
/*c*/
/*d*/
return Arrays.asList("ds", "e", "fe")./*a*/stream(/*b*/).anyMatch(s -> s.length() > 1);
}
}