|
|
|
|
|
by vips7L
916 days ago
|
|
> Well on the other end of the extreme we had Java, which had an awful lot of this:
HashMap<String, List<int>> hashmap = new HashMap<String, List<int>>(); This is untrue. Inferring diamond types has been built into the language for over a decade. Map<String, List<Integer>> map = new HashMap<>();
|
|