Elixir v1.5.3 HashDict View Source

WARNING: this module is deprecated.

Use the Map module instead.

Link to this section Summary

Link to this section Types

Link to this section Functions

Link to this function get(dict, key, default \\ nil) View Source
Link to this function get_and_update(dict, key, fun) View Source
Link to this function get_lazy(dict, key, fun) View Source
Link to this function merge(dict1, dict2, fun \\ fn _k, _v1, v2 -> v2 end) View Source

Creates a new empty dict.

Link to this function pop(dict, key, default \\ nil) View Source
Link to this function pop_lazy(dict, key, fun) View Source
Link to this function put(hash_dict, key, value) View Source
Link to this function put_new(dict, key, value) View Source
Link to this function put_new_lazy(dict, key, fun) View Source
Link to this function update(dict, key, initial, fun) View Source