static A firstKey(Map map) {
ret first(keys(map));
}
ifclass MultiSetMap
static A firstKey(MultiSetMap map) {
ret map == null ? null : firstKey(map.data);
}
endif
ifclass MultiMap
static A firstKey(MultiMap map) {
ret map == null ? null : firstKey(map.data);
}
endif