sylon_utils v0.1.1 SylonUtils.NestedMapFilter
Documentation for NestedFilter.
Link to this section Summary
Functions
Take a (nested) map and filter out any values with specified keys in the keys_to_reject list.
Take a (nested) map and filter out any keys with specified values in the values_to_reject list.
Take a (nested) map and keep any values with specified keys in the keys_to_select list.
Link to this section Types
Link to this section Functions
Link to this function
drop_by(struct, predicate)
Link to this function
drop_by_key(map, keys_to_reject)
Take a (nested) map and filter out any values with specified keys in the keys_to_reject list.
Link to this function
drop_by_value(map, values_to_reject)
Take a (nested) map and filter out any keys with specified values in the values_to_reject list.
Link to this function
take_by_key(map, keys_to_select)
Take a (nested) map and keep any values with specified keys in the keys_to_select list.