View Source HashDict (Elixir v1.13.0-rc.0)

This module is deprecated. Use Map instead.

Tuple-based HashDict implementation.

This module is deprecated. Use the Map module instead.

Link to this section Summary

Link to this section Types

@opaque t()

Link to this section Functions

This function is deprecated. Use maps and the Map module instead.
This function is deprecated. Use maps and the Map module instead.
This function is deprecated. Use maps and the Map module instead.
This function is deprecated. Use maps and the Map module instead.
This function is deprecated. Use maps and the Map module instead.
Link to this function

get(dict, key, default \\ nil)

View Source
This function is deprecated. Use maps and the Map module instead.
Link to this function

get_and_update(dict, key, fun)

View Source
This function is deprecated. Use maps and the Map module instead.
Link to this function

get_lazy(dict, key, fun)

View Source
This function is deprecated. Use maps and the Map module instead.
This function is deprecated. Use maps and the Map module instead.
This function is deprecated. Use maps and the Map module instead.
Link to this function

merge(dict1, dict2, fun \\ fn _k, _v1, v2 -> v2 end)

View Source
This function is deprecated. Use maps and the Map module instead.
This function is deprecated. Use maps and the Map module instead.
@spec new() :: Dict.t()

Creates a new empty dict.

Link to this function

pop(dict, key, default \\ nil)

View Source
This function is deprecated. Use maps and the Map module instead.
Link to this function

pop_lazy(dict, key, fun)

View Source
This function is deprecated. Use maps and the Map module instead.
Link to this function

put(hash_dict, key, value)

View Source
This function is deprecated. Use maps and the Map module instead.
Link to this function

put_new(dict, key, value)

View Source
This function is deprecated. Use maps and the Map module instead.
Link to this function

put_new_lazy(dict, key, fun)

View Source
This function is deprecated. Use maps and the Map module instead.
This function is deprecated. Use maps and the Map module instead.
This function is deprecated. Use maps and the Map module instead.
This function is deprecated. Use maps and the Map module instead.
This function is deprecated. Use maps and the Map module instead.
Link to this function

update(dict, key, default, fun)

View Source
This function is deprecated. Use maps and the Map module instead.
This function is deprecated. Use maps and the Map module instead.
This function is deprecated. Use maps and the Map module instead.