mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
12 lines
240 B
Java
12 lines
240 B
Java
|
|
import java.util.List;
|
|
import java.util.stream.Stream;
|
|
|
|
interface TreeUtils {
|
|
|
|
static <K> Stream<List<K>> treeStream(List<K> treeItem) {
|
|
Stream<List<K>> stream = null;
|
|
stream.flatMap(TreeUtils::treeStream);
|
|
return null;
|
|
}
|
|
} |