Dictionary - an iterable data store

Instantiate with a template type for the key:

const store: Dictionary<string> = new Dictionary<string>();

Hierarchy

Constructors

Properties

logger: Logger = ...

Methods

  • Put a new key/value pair Overwrites an existing key

    Parameters

    • key: string

      The key

    • value: any

      The value - supports null

    Returns any