Dictionary.map
mapfunction
Documentation
Maps a function over each value in this dictionary.
Arguments
function
: The function to apply to each value in the dictionary, taking a value and returning a value.
Examples
Append "_word" to all values in the dictionary.
import Standard.Examples
example_map = Examples.dictionary.map (+ "_word")