mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 10:51:06 +07:00
12 lines
325 B
Java
12 lines
325 B
Java
// "Collapse loop with stream 'collect()'" "true-preview"
|
|
|
|
import java.util.*;
|
|
import java.util.stream.Collectors;
|
|
|
|
public class Main {
|
|
private Map<Integer, List<String>> test(String... list) {
|
|
Map<Integer, List<String>> map = Arrays.stream(list).collect(Collectors.groupingBy(String::length));
|
|
return map;
|
|
}
|
|
}
|