dict
dict
Module
dict
Module summary
Key-value dictionary.
Description
This module provides a Key
-Value
dictionary. The representation of a dictionary is not defined.
This module provides the same interface as the orddict(3)
module. One difference is that while this module considers two keys as different if they do not match (=:=
), orddict
considers two keys as different if and only if they do not compare equal (==
).
Data types
dict(Key, Value)
Dictionary as returned by new/0
.