Skip to content

Latest commit

 

History

History
27 lines (25 loc) · 800 Bytes

Dictionary.md

File metadata and controls

27 lines (25 loc) · 800 Bytes
nav-title title description
Class utils/containers.Dictionary
Class utils/containers.Dictionary
Class utils/containers.Dictionary

Class: "utils/containers".Dictionary

Type parameters: TKey, TValue

Instance Properties
  • count - Number.
Instance Functions
  • forEach( callbackfn Function... )
    • callbackfn - Function(key TKey, value TValue)
  • clear()
  • remove( key TKey ) Boolean
    • key - TKey
    • return - Boolean
  • get( key TKey ) TValue
    • key - TKey
    • return - TValue
  • has( key TKey ) Boolean
    • key - TKey
    • return - Boolean
  • set( key TKey, value TValue )
    • key - TKey
    • value - TValue