static L keysForValuesOtherThan(Map map, B value) { new L l; for (A key : keys(map)) if (neq(map.get(key), value)) l.add(key); ret l; }