static L topTenKeysByValue(Map map) { ret topTenKeysByValue(10, map); } static L topTenKeysByValue(int n, Map map) { ret takeFirst_cloneIfDifferent(n, keysSortedByValueDesc(map)); }