// f: func(key, value) -> entry static L mapMapToList(Map map, O f) { ret map(map, f); } static L mapMapToList(O f, Map map) { ret map(f, map); }