static A lookupByNLMatch(Map map, S s) { ret lookupByNLMatch(map, s, null); } static A lookupByNLMatch(Map map, S s, Matches m) { for (S key : keys(map)) if (match(key, s, m)) ret map.get(key); null; } ifclass MultiMap static L lookupByNLMatch(MultiMap map, S s) { for (S key : keys(map)) if (match(key, s)) ret map.get(key); ret emptyList(); } endif