Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ReadonlyMap<T>

ES6 Map interface, only read methods included.

Type parameters

  • T

Hierarchy

Index

Properties

Methods

Properties

Readonly size

size: number

Methods

entries

forEach

  • forEach(action: (value: T, key: string) => void): void
  • Parameters

    • action: (value: T, key: string) => void
        • (value: T, key: string): void
        • Parameters

          • value: T
          • key: string

          Returns void

    Returns void

get

  • get(key: string): T
  • Parameters

    • key: string

    Returns T

has

  • has(key: string): boolean
  • Parameters

    • key: string

    Returns boolean

keys

values

Generated using TypeDoc