mirror of
https://github.com/bigchaindb/bigchaindb.git
synced 2024-10-13 13:34:05 +00:00
20 lines
745 B
ReStructuredText
20 lines
745 B
ReStructuredText
Glossary
|
|
========
|
|
|
|
.. glossary::
|
|
:sorted:
|
|
|
|
associative array
|
|
A collection of key/value (or name/value) pairs
|
|
such that each possible key appears at most once
|
|
in the collection.
|
|
In JavaScript (and JSON), all objects behave as associative arrays
|
|
with string-valued keys.
|
|
In Python and .NET, associative arrays are called *dictionaries*.
|
|
In Java and Go, they are called *maps*.
|
|
In Ruby, they are called *hashes*.
|
|
See also: Wikipedia's articles for
|
|
`Associative array <https://en.wikipedia.org/wiki/Associative_array>`_
|
|
and
|
|
`Comparison of programming languages (associative array) <https://en.wikipedia.org/wiki/Comparison_of_programming_languages_(associative_array)>`_
|