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