The JavaScript Map type.
Aliases:
std::map<keyType, valueType>
Dictionary<keyType, valueType>
Map<keyType, valueType>
map[keyType]valueType
Map k v
new Map()
%hash
// In PHP, associative arrays are used as maps.
[hashtable]
dict
# R does not have a built-in Map type. Use lists or data.frames for similar functionality.
Hash
std::collections::HashMap<KeyType, ValueType>
Map[keyType, valueType]
# Bash uses associative arrays for maps:declare -A myMap; myMap[key1]=value1; myMap[key2]=value2
Dictionary<KeyType, ValueType>
Map<KeyType, ValueType>