map_filter [function]
map_filter( map[, callable] )
return a map with the items that convert to boolean 'true', optionally preprocessed by a callable
- two arguments are passed to the callable: value, key
map_filter(map{ a = 0, b = 1 }); // returns [map]{b=1}