static B firstValue(Map map) { ret first(values(map)); } ifclass MultiSetMap static B firstValue(MultiSetMap map) { ret map == null ? null : first(firstValue(map.data)); } endif ifclass MultiMap static B firstValue(MultiMap map) { ret map == null ? null : first(firstValue(map.data)); } endif