Коллекция только для чтения, содержащая объекты ICardMetadataEnumeration.

interface ReadonlyCardMetadataEnumerationArray {
    "[unscopables]": {
        "[iterator]"?: boolean;
        "[unscopables]"?: boolean;
        at?: boolean;
        concat?: boolean;
        entries?: boolean;
        every?: boolean;
        filter?: boolean;
        find?: boolean;
        findIndex?: boolean;
        findLast?: boolean;
        findLastIndex?: boolean;
        flat?: boolean;
        flatMap?: boolean;
        forEach?: boolean;
        includes?: boolean;
        indexOf?: boolean;
        join?: boolean;
        keys?: boolean;
        lastIndexOf?: boolean;
        length?: boolean;
        map?: boolean;
        reduce?: boolean;
        reduceRight?: boolean;
        slice?: boolean;
        some?: boolean;
        toLocaleString?: boolean;
        toReversed?: boolean;
        toSorted?: boolean;
        toSpliced?: boolean;
        toString?: boolean;
        values?: boolean;
        with?: boolean;
        readonly [key: number]: undefined | boolean;
    };
    collectionChanged: EventHandler<
        ListChangedEventArgs<ICardMetadataEnumeration>,
        ReadonlyCardMetadataEnumerationArray,
    >;
    completionOptions: readonly ICardMetadataCompletionOption[];
    functionRoles: readonly ICardMetadataFunctionRole[];
    length: number;
    normalizationSources: readonly ICardMetadataNormalizationSource[];
    observable: boolean;
    storageEnhancer: null | IListEnhancer<ICardMetadataEnumeration, unknown>;
    "[iterator]"(): ArrayIterator<ICardMetadataEnumeration>;
    at(index: number): undefined | ICardMetadataEnumeration;
    clone(): this;
    concat(
        ...items: ConcatArray<ICardMetadataEnumeration>[],
    ): ICardMetadataEnumeration[];
    concat(
        ...items: (
            ICardMetadataEnumeration
            | ConcatArray<ICardMetadataEnumeration>
        )[],
    ): ICardMetadataEnumeration[];
    dispose(): void;
    entries(): ArrayIterator<[number, ICardMetadataEnumeration]>;
    every<S extends ICardMetadataEnumeration>(
        predicate: (
            value: ICardMetadataEnumeration,
            index: number,
            array: readonly ICardMetadataEnumeration[],
        ) => value is S,
        thisArg?: any,
    ): this is readonly S[];
    every(
        predicate: (
            value: ICardMetadataEnumeration,
            index: number,
            array: readonly ICardMetadataEnumeration[],
        ) => unknown,
        thisArg?: any,
    ): boolean;
    filter<S extends ICardMetadataEnumeration>(
        predicate: (
            value: ICardMetadataEnumeration,
            index: number,
            array: readonly ICardMetadataEnumeration[],
        ) => value is S,
        thisArg?: any,
    ): S[];
    filter(
        predicate: (
            value: ICardMetadataEnumeration,
            index: number,
            array: readonly ICardMetadataEnumeration[],
        ) => unknown,
        thisArg?: any,
    ): ICardMetadataEnumeration[];
    find<S extends ICardMetadataEnumeration>(
        predicate: (
            value: ICardMetadataEnumeration,
            index: number,
            obj: readonly ICardMetadataEnumeration[],
        ) => value is S,
        thisArg?: any,
    ): undefined | S;
    find(
        predicate: (
            value: ICardMetadataEnumeration,
            index: number,
            obj: readonly ICardMetadataEnumeration[],
        ) => unknown,
        thisArg?: any,
    ): undefined | ICardMetadataEnumeration;
    findIndex(
        predicate: (
            value: ICardMetadataEnumeration,
            index: number,
            obj: readonly ICardMetadataEnumeration[],
        ) => unknown,
        thisArg?: any,
    ): number;
    findLast<S extends ICardMetadataEnumeration>(
        predicate: (
            value: ICardMetadataEnumeration,
            index: number,
            array: readonly ICardMetadataEnumeration[],
        ) => value is S,
        thisArg?: any,
    ): undefined | S;
    findLast(
        predicate: (
            value: ICardMetadataEnumeration,
            index: number,
            array: readonly ICardMetadataEnumeration[],
        ) => unknown,
        thisArg?: any,
    ): undefined | ICardMetadataEnumeration;
    findLastIndex(
        predicate: (
            value: ICardMetadataEnumeration,
            index: number,
            array: readonly ICardMetadataEnumeration[],
        ) => unknown,
        thisArg?: any,
    ): number;
    flat<A, D extends number = 1>(this: A, depth?: D): FlatArray<A, D>[];
    flatMap<U, This = undefined>(
        callback: (
            this: This,
            value: ICardMetadataEnumeration,
            index: number,
            array: ICardMetadataEnumeration[],
        ) => U | readonly U[],
        thisArg?: This,
    ): U[];
    forEach(
        callbackfn: (
            value: ICardMetadataEnumeration,
            index: number,
            array: readonly ICardMetadataEnumeration[],
        ) => void,
        thisArg?: any,
    ): void;
    get(index: number): undefined | ICardMetadataEnumeration;
    getVersionRef(): unknown;
    includes(
        searchElement: ICardMetadataEnumeration,
        fromIndex?: number,
    ): boolean;
    indexOf(
        searchElement: ICardMetadataEnumeration,
        fromIndex?: number,
    ): number;
    join(separator?: string): string;
    keys(): ArrayIterator<number>;
    lastIndexOf(
        searchElement: ICardMetadataEnumeration,
        fromIndex?: number,
    ): number;
    map<U>(
        callbackfn: (
            value: ICardMetadataEnumeration,
            index: number,
            array: readonly ICardMetadataEnumeration[],
        ) => U,
        thisArg?: any,
    ): U[];
    reduce(
        callbackfn: (
            previousValue: ICardMetadataEnumeration,
            currentValue: ICardMetadataEnumeration,
            currentIndex: number,
            array: readonly ICardMetadataEnumeration[],
        ) => ICardMetadataEnumeration,
    ): ICardMetadataEnumeration;
    reduce(
        callbackfn: (
            previousValue: ICardMetadataEnumeration,
            currentValue: ICardMetadataEnumeration,
            currentIndex: number,
            array: readonly ICardMetadataEnumeration[],
        ) => ICardMetadataEnumeration,
        initialValue: ICardMetadataEnumeration,
    ): ICardMetadataEnumeration;
    reduce<U>(
        callbackfn: (
            previousValue: U,
            currentValue: ICardMetadataEnumeration,
            currentIndex: number,
            array: readonly ICardMetadataEnumeration[],
        ) => U,
        initialValue: U,
    ): U;
    reduceRight(
        callbackfn: (
            previousValue: ICardMetadataEnumeration,
            currentValue: ICardMetadataEnumeration,
            currentIndex: number,
            array: readonly ICardMetadataEnumeration[],
        ) => ICardMetadataEnumeration,
    ): ICardMetadataEnumeration;
    reduceRight(
        callbackfn: (
            previousValue: ICardMetadataEnumeration,
            currentValue: ICardMetadataEnumeration,
            currentIndex: number,
            array: readonly ICardMetadataEnumeration[],
        ) => ICardMetadataEnumeration,
        initialValue: ICardMetadataEnumeration,
    ): ICardMetadataEnumeration;
    reduceRight<U>(
        callbackfn: (
            previousValue: U,
            currentValue: ICardMetadataEnumeration,
            currentIndex: number,
            array: readonly ICardMetadataEnumeration[],
        ) => U,
        initialValue: U,
    ): U;
    slice(start?: number, end?: number): ICardMetadataEnumeration[];
    some(
        predicate: (
            value: ICardMetadataEnumeration,
            index: number,
            array: readonly ICardMetadataEnumeration[],
        ) => unknown,
        thisArg?: any,
    ): boolean;
    toLocaleString(): string;
    toLocaleString(
        locales: string | string[],
        options?: NumberFormatOptions & DateTimeFormatOptions,
    ): string;
    toReversed(): ICardMetadataEnumeration[];
    toSorted(
        compareFn?: (
            a: ICardMetadataEnumeration,
            b: ICardMetadataEnumeration,
        ) => number,
    ): ICardMetadataEnumeration[];
    toSpliced(
        start: number,
        deleteCount: number,
        ...items: ICardMetadataEnumeration[],
    ): ICardMetadataEnumeration[];
    toSpliced(start: number, deleteCount?: number): ICardMetadataEnumeration[];
    toString(): string;
    values(): ArrayIterator<ICardMetadataEnumeration>;
    with(
        index: number,
        value: ICardMetadataEnumeration,
    ): ICardMetadataEnumeration[];
    readonly [n: number]: ICardMetadataEnumeration;
}

Hierarchy (View Summary, Expand)

Indexable

Properties - Extensions

completionOptions: readonly ICardMetadataCompletionOption[]

Варианты завершения заданий.

functionRoles: readonly ICardMetadataFunctionRole[]

Функциональные роли заданий. Идентификаторы типовых ролей перечислены в классе CardFunctionRoles.

normalizationSources: readonly ICardMetadataNormalizationSource[]

Справочники нормализации.

Properties - Other

"[unscopables]": {
    "[iterator]"?: boolean;
    "[unscopables]"?: boolean;
    at?: boolean;
    concat?: boolean;
    entries?: boolean;
    every?: boolean;
    filter?: boolean;
    find?: boolean;
    findIndex?: boolean;
    findLast?: boolean;
    findLastIndex?: boolean;
    flat?: boolean;
    flatMap?: boolean;
    forEach?: boolean;
    includes?: boolean;
    indexOf?: boolean;
    join?: boolean;
    keys?: boolean;
    lastIndexOf?: boolean;
    length?: boolean;
    map?: boolean;
    reduce?: boolean;
    reduceRight?: boolean;
    slice?: boolean;
    some?: boolean;
    toLocaleString?: boolean;
    toReversed?: boolean;
    toSorted?: boolean;
    toSpliced?: boolean;
    toString?: boolean;
    values?: boolean;
    with?: boolean;
    readonly [key: number]: undefined | boolean;
}

Is an object whose properties have the value 'true' when they will be absent when used in a 'with' statement.

Type declaration

  • readonly [key: number]: undefined | boolean
  • Optional[iterator]?: boolean
  • Optional Readonly[unscopables]?: boolean

    Is an object whose properties have the value 'true' when they will be absent when used in a 'with' statement.

  • Optionalat?: boolean
  • Optionalconcat?: boolean
  • Optionalentries?: boolean
  • Optionalevery?: boolean
  • Optionalfilter?: boolean
  • Optionalfind?: boolean
  • OptionalfindIndex?: boolean
  • OptionalfindLast?: boolean
  • OptionalfindLastIndex?: boolean
  • Optionalflat?: boolean
  • OptionalflatMap?: boolean
  • OptionalforEach?: boolean
  • Optionalincludes?: boolean
  • OptionalindexOf?: boolean
  • Optionaljoin?: boolean
  • Optionalkeys?: boolean
  • OptionallastIndexOf?: boolean
  • Optional Readonlylength?: boolean

    Gets the length of the array. This is a number one higher than the highest element defined in an array.

  • Optionalmap?: boolean
  • Optionalreduce?: boolean
  • OptionalreduceRight?: boolean
  • Optionalslice?: boolean
  • Optionalsome?: boolean
  • OptionaltoLocaleString?: boolean
  • OptionaltoReversed?: boolean
  • OptionaltoSorted?: boolean
  • OptionaltoSpliced?: boolean
  • OptionaltoString?: boolean
  • Optionalvalues?: boolean
  • Optionalwith?: boolean
length: number

Gets the length of the array. This is a number one higher than the highest element defined in an array.

observable: boolean
storageEnhancer: null | IListEnhancer<ICardMetadataEnumeration, unknown>

Methods

  • Determines whether all the members of an array satisfy the specified test.

    Type Parameters

    Parameters

    • predicate: (
          value: ICardMetadataEnumeration,
          index: number,
          array: readonly ICardMetadataEnumeration[],
      ) => value is S

      A function that accepts up to three arguments. The every method calls the predicate function for each element in the array until the predicate returns a value which is coercible to the Boolean value false, or until the end of the array.

    • OptionalthisArg: any

      An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.

    Returns this is readonly S[]

  • Determines whether all the members of an array satisfy the specified test.

    Parameters

    • predicate: (
          value: ICardMetadataEnumeration,
          index: number,
          array: readonly ICardMetadataEnumeration[],
      ) => unknown

      A function that accepts up to three arguments. The every method calls the predicate function for each element in the array until the predicate returns a value which is coercible to the Boolean value false, or until the end of the array.

    • OptionalthisArg: any

      An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.

    Returns boolean

  • Returns the index of the first element in the array where predicate is true, and -1 otherwise.

    Parameters

    • predicate: (
          value: ICardMetadataEnumeration,
          index: number,
          obj: readonly ICardMetadataEnumeration[],
      ) => unknown

      find calls predicate once for each element of the array, in ascending order, until it finds one where predicate returns true. If such an element is found, findIndex immediately returns that element index. Otherwise, findIndex returns -1.

    • OptionalthisArg: any

      If provided, it will be used as the this value for each invocation of predicate. If it is not provided, undefined is used instead.

    Returns number

  • Returns the index of the last element in the array where predicate is true, and -1 otherwise.

    Parameters

    • predicate: (
          value: ICardMetadataEnumeration,
          index: number,
          array: readonly ICardMetadataEnumeration[],
      ) => unknown

      findLastIndex calls predicate once for each element of the array, in descending order, until it finds one where predicate returns true. If such an element is found, findLastIndex immediately returns that element index. Otherwise, findLastIndex returns -1.

    • OptionalthisArg: any

      If provided, it will be used as the this value for each invocation of predicate. If it is not provided, undefined is used instead.

    Returns number

  • Returns a new array with all sub-array elements concatenated into it recursively up to the specified depth.

    Type Parameters

    • A
    • D extends number = 1

    Parameters

    • this: A
    • Optionaldepth: D

      The maximum recursion depth

    Returns FlatArray<A, D>[]

  • Calls a defined callback function on each element of an array. Then, flattens the result into a new array. This is identical to a map followed by flat with depth 1.

    Type Parameters

    • U
    • This = undefined

    Parameters

    • callback: (
          this: This,
          value: ICardMetadataEnumeration,
          index: number,
          array: ICardMetadataEnumeration[],
      ) => U | readonly U[]

      A function that accepts up to three arguments. The flatMap method calls the callback function one time for each element in the array.

    • OptionalthisArg: This

      An object to which the this keyword can refer in the callback function. If thisArg is omitted, undefined is used as the this value.

    Returns U[]

  • Performs the specified action for each element in an array.

    Parameters

    • callbackfn: (
          value: ICardMetadataEnumeration,
          index: number,
          array: readonly ICardMetadataEnumeration[],
      ) => void

      A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.

    • OptionalthisArg: any

      An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.

    Returns void

  • Determines whether an array includes a certain element, returning true or false as appropriate.

    Parameters

    • searchElement: ICardMetadataEnumeration

      The element to search for.

    • OptionalfromIndex: number

      The position in this array at which to begin searching for searchElement.

    Returns boolean

  • Returns the index of the first occurrence of a value in an array.

    Parameters

    • searchElement: ICardMetadataEnumeration

      The value to locate in the array.

    • OptionalfromIndex: number

      The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0.

    Returns number

  • Adds all the elements of an array separated by the specified separator string.

    Parameters

    • Optionalseparator: string

      A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma.

    Returns string

  • Returns an iterable of keys in the array

    Returns ArrayIterator<number>

  • Returns the index of the last occurrence of a specified value in an array.

    Parameters

    • searchElement: ICardMetadataEnumeration

      The value to locate in the array.

    • OptionalfromIndex: number

      The array index at which to begin the search. If fromIndex is omitted, the search starts at the last index in the array.

    Returns number

  • Calls a defined callback function on each element of an array, and returns an array that contains the results.

    Type Parameters

    • U

    Parameters

    • callbackfn: (
          value: ICardMetadataEnumeration,
          index: number,
          array: readonly ICardMetadataEnumeration[],
      ) => U

      A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.

    • OptionalthisArg: any

      An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.

    Returns U[]

  • Returns a section of an array.

    Parameters

    • Optionalstart: number

      The beginning of the specified portion of the array.

    • Optionalend: number

      The end of the specified portion of the array. This is exclusive of the element at the index 'end'.

    Returns ICardMetadataEnumeration[]

  • Determines whether the specified callback function returns true for any element of an array.

    Parameters

    • predicate: (
          value: ICardMetadataEnumeration,
          index: number,
          array: readonly ICardMetadataEnumeration[],
      ) => unknown

      A function that accepts up to three arguments. The some method calls the predicate function for each element in the array until the predicate returns a value which is coercible to the Boolean value true, or until the end of the array.

    • OptionalthisArg: any

      An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value.

    Returns boolean

  • Returns a string representation of an array. The elements are converted to string using their toLocaleString methods.

    Returns string

  • Parameters

    • locales: string | string[]
    • Optionaloptions: NumberFormatOptions & DateTimeFormatOptions

    Returns string

  • Copies an array and removes elements while, if necessary, inserting new elements in their place, returning the remaining elements.

    Parameters

    • start: number

      The zero-based location in the array from which to start removing elements.

    • deleteCount: number

      The number of elements to remove.

    • ...items: ICardMetadataEnumeration[]

      Elements to insert into the copied array in place of the deleted elements.

    Returns ICardMetadataEnumeration[]

    A copy of the original array with the remaining elements.

  • Copies an array and removes elements while returning the remaining elements.

    Parameters

    • start: number

      The zero-based location in the array from which to start removing elements.

    • OptionaldeleteCount: number

      The number of elements to remove.

    Returns ICardMetadataEnumeration[]

    A copy of the original array with the remaining elements.

MMNEPVFCICPMFPCPTTAAATR