Базовый контейнер только для чтения для хранения ключ/значения.

interface ReadonlyViewResultRow {
    ignoreCase: boolean;
    mapEnhancer: null | IMapEnhancer<null | Primitive, unknown>;
    observable: boolean;
    size: number;
    "[iterator]"(): MapIterator<[string, null | Primitive]>;
    clone(): IDictionary;
    dispose(): void;
    entries(): MapIterator<[string, null | Primitive]>;
    forEach(
        callbackfn: (
            value: null | Primitive,
            key: string,
            map: ReadonlyMap<string, null | Primitive>,
        ) => void,
        thisArg?: any,
    ): void;
    get(key: string): undefined | null | Primitive;
    getVersionRef(): unknown;
    has(key: string): boolean;
    keys(): MapIterator<string>;
    tryGet(key: string): undefined | null | Primitive;
    tryGet<T>(key: string): undefined | T;
    values(): MapIterator<null | Primitive>;
}

Hierarchy (View Summary, Expand)

Properties

ignoreCase: boolean

Флаг, указывающий на то, что для доступа к элементам регистр ключа игнорируется.

mapEnhancer: null | IMapEnhancer<null | Primitive, unknown>

Объект, позволяющий обрабатывать значения, добавляемые в объект-хранилище.

observable: boolean

Флаг, включающий уведомления об изменении объектов.

size: number

Methods

  • Returns an iterable of entries in the map.

    Returns MapIterator<[string, null | Primitive]>

  • Создает новый объект, который является копией текущего экземпляра.

    Returns IDictionary

  • Вызывает функции очистки всех внутренних ресурсов конейтенера.

    Returns void

  • Returns an iterable of key, value pairs for every entry in the map.

    Returns MapIterator<[string, null | Primitive]>

  • Parameters

    • callbackfn: (
          value: null | Primitive,
          key: string,
          map: ReadonlyMap<string, null | Primitive>,
      ) => void
    • OptionalthisArg: any

    Returns void

  • Parameters

    • key: string

    Returns undefined | null | Primitive

  • Parameters

    • key: string

    Returns boolean

  • Returns an iterable of keys in the map

    Returns MapIterator<string>

  • Возвращает значение, полученное по ключу key, или undefined, если значение отсутствует.

    Parameters

    • key: string

      Ключ, по которому требуется найти значение.

    Returns undefined | null | Primitive

    Значение, полученное по ключу key, или undefined, если значение отсутствует.

  • Type Parameters

    • T

    Parameters

    • key: string

    Returns undefined | T

  • Returns an iterable of values in the map

    Returns MapIterator<null | Primitive>

MMNEPVFCICPMFPCPTTAAATR