Collections

Map

English

Overview

A structure that stores data as key-value pairs.

Details

A collection storing values associated with unique keys, supporting fast key-based lookup. Most implementations are hash tables keyed by a hash of the key, achieving average O(1) lookup, insertion, and removal.

More Programming terms