mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
14 lines
321 B
Java
14 lines
321 B
Java
import com.google.common.collect.Iterables;
|
|
import com.google.common.base.Predicate;
|
|
|
|
import java.lang.String;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.Collections;
|
|
|
|
class c {
|
|
void m() {
|
|
List<String> l = new ArrayList<String>();
|
|
Iterables.fin<caret>d(l, String::isEmpty, "asd");
|
|
}
|
|
} |