vec/dict/internal

Values

pub fn map_keys(
  in dict: dict.Dict(a, value),
  with fun: fn(a, value) -> b,
) -> dict.Dict(b, value)

Updates all keys in a given dict by calling a given function on each key and value.

Search Document