Options
All
  • Public
  • Public/Protected
  • All
Menu

Map implementation keyed by string (always). Note that the get/remove return either value or null. This map does not support undefined in any fasion (on purpose).

Type parameters

  • V

Hierarchy

  • SimpleMap

Index

Methods

clear

  • clear(): void

exists

  • exists(key: string): boolean

forEach

  • forEach(cbFunction: function): void

get

  • get(key: string): V | null

isEmpty

  • isEmpty(): boolean

keys

  • keys(): string[]

put

  • put(key: string, value: V | null): void

remove

  • remove(key: string): V | null

size

  • size(): number

values

  • values(): Array<V | null>

Generated using TypeDoc