mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
7 lines
192 B
Plaintext
7 lines
192 B
Plaintext
import java.util.List;
|
|
|
|
public class X {
|
|
boolean test(List<String> list) {
|
|
return list.stream()<spot>.map(String::toLowerCase)</spot>.anyMatch(lower -> lower.equals("test"));
|
|
}
|
|
} |