static Map filterKeys(Map map, O f) {
ret filterMapByFunctionOnKey(map, f);
}
static Map filterKeys(O f, Map map) {
ret filterMapByFunctionOnKey(f, map);
}
static Map lambdaMapLike filterKeys(IPred f, Map map) {
ret filterMapByFunctionOnKey((O) f, map);
}
static Map filterKeys(Map map, IPred f) {
ret filterKeys(f, map);
}