This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec delete(t(), key()) :: t()
This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec drop(t(), [key()]) :: t()
This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec equal?(t(), t()) :: boolean()
This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec fetch(t(), key()) :: value()
This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec fetch!(t(), key()) :: value()
This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec get(t(), key(), value()) :: value()
get_and_update(dict, key, fun)Source
This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec get_and_update(t(), key(), (value() -> {value(), value()})) :: {value(), t()} This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec get_lazy(t(), key(), (-> value())) :: value()
This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec has_key?(t(), key()) :: boolean()
This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec keys(t()) :: [key()]
This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec merge(t(), t()) :: t()
This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec merge(t(), t(), (key(), value(), value() -> value())) :: t()
This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec pop(t(), key(), value()) :: {value(), t()} This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec pop_lazy(t(), key(), (-> value())) :: {value(), t()} This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec put(t(), key(), value()) :: t()
This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec put_new(t(), key(), value()) :: t()
This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec put_new_lazy(t(), key(), (-> value())) :: t()
This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec size(t()) :: non_neg_integer()
This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec split(t(), [key()]) :: {t(), t()} This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec take(t(), [key()]) :: t()
This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec to_list(t()) :: list()
This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec update(t(), key(), value(), (value() -> value())) :: t()
This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec update!(t(), key(), (value() -> value())) :: t()
This function is deprecated. Use the Map module for working with maps or the Keyword module for working with keyword lists.
@spec values(t()) :: [value()]