I\'m trying to perform a map operation on each entry in a Map object.
Map
I need to take a prefix off the key and convert the value from one type to another
Please make the following part of the Collectors API:
Collector super Map.Entry, ?, Map> toMap() { return Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue); }