map_filter [function]

map_filter( map[, callable] )

return a map with the items that convert to boolean 'true', optionally preprocessed by a callable

map_filter(map{ a = 0, b = 1 }); // returns [map]{b=1}