pub fn process_value_from_yaml_hash<T, F>(
    key: &str,
    yaml_hash: &StrictYaml,
    process: F
) -> Result<T, DotfilesError>
Expand description

Gets the value for a specified key in a yaml hash and does something with it.

Returns the result of the process function being applied to the value in question.

§Errors