mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-06 09:36:56 +07:00
17 lines
395 B
Java
17 lines
395 B
Java
import com.google.common.collect.Iterables;
|
|
|
|
import java.lang.String;
|
|
import java.util.List;
|
|
import java.util.ArrayList;
|
|
|
|
class c {
|
|
void m() {
|
|
List<String> l = new ArrayList<>();
|
|
Iterable<Boolean> transform = Iterables.tr<caret>ansform(l, new Function<String, Boolean>() {
|
|
@Override
|
|
public Boolean apply(String input) {
|
|
return input.isEmpty();
|
|
}
|
|
});
|
|
}
|
|
} |