static Map filterMap_valuesEqualToOrBiggerThan(Map map, B value) { ret filterMap(map, func(A key, B val) -> bool { cmp(val, value) >= 0 }); }