static L keysDeprefixNemptyValue(SS map, S prefix) { new L l; for (S s : keys(map)) if (startsWith(s, prefix) && nempty(map.get(s))) l.add(s.substring(l(prefix))); ret l; }