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

Hierarchy

Implements

Constructors

Properties

_arrayFactory: (<S>(storage: IStorageArray<unknown>) => S)

Type declaration

defaultValueFactory: null | IStorageValueFactory<ICardMetadataEnumeration, IStorage<unknown> | IStorageArray<unknown>>
length: number

Gets or sets the length of the array. This is a number one higher than the highest index in the array.

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

Accessors

  • get self(): unknown
  • Returns unknown

  • get storage(): IStorageArray<unknown>
  • Returns IStorageArray<unknown>

Methods

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

    Returns {
        copyWithin: boolean;
        entries: boolean;
        fill: boolean;
        find: boolean;
        findIndex: boolean;
        keys: boolean;
        values: boolean;
    }

    • copyWithin: boolean
    • entries: boolean
    • fill: boolean
    • find: boolean
    • findIndex: boolean
    • keys: boolean
    • values: boolean
  • Returns the this object after copying a section of the array identified by start and end to the same array starting at position target

    Parameters

    • target: number

      If target is negative, it is treated as length+target where length is the length of the array.

    • start: number

      If start is negative, it is treated as length+start. If end is negative, it is treated as length+end.

    • Optional end: number

      If not specified, length of the this object is used as its default value.

    Returns CardMetadataEnumerationArrayInternal

  • Выполняет резолв кеша декораторов для данных объекта-хранилища.

    Returns void

  • 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
    • Optional depth: D

      The maximum recursion depth

    Returns FlatArray<A, D>[]

  • Возвращает хранилище IStorage, декоратором для которого является текущий объект.

    Returns

    Хранилище IStorage, декоратором для которого является текущий объект.

    Returns IStorageArray<unknown>

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

    Parameters

    • searchElement: ICardMetadataEnumeration

      The element to search for.

    • Optional fromIndex: 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, or -1 if it is not present.

    Parameters

    • searchElement: ICardMetadataEnumeration

      The value to locate in the array.

    • Optional fromIndex: number

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

    Returns number

  • Returns void

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

    Parameters

    • Optional separator: string

      A string used to separate one element of the 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 IterableIterator<number>

  • Returns the index of the last occurrence of a specified value in an array, or -1 if it is not present.

    Parameters

    • searchElement: ICardMetadataEnumeration

      The value to locate in the array.

    • Optional fromIndex: number

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

    Returns number

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

    Returns void

  • Returns void

  • Returns a copy of a section of an array. For both start and end, a negative index can be used to indicate an offset from the end of the array. For example, -2 refers to the second to last element of the array.

    Parameters

    • Optional start: number

      The beginning index of the specified portion of the array. If start is undefined, then the slice begins at index 0.

    • Optional end: number

      The end index of the specified portion of the array. This is exclusive of the element at the index 'end'. If end is undefined, then the slice extends to the end of the array.

    Returns ICardMetadataEnumeration[]

  • Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.

    Returns

    An array containing the elements that were deleted.

    Parameters

    • start: number

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

    • Optional deleteCount: number

      The number of elements to remove.

    Returns ICardMetadataEnumeration[]

  • Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements.

    Returns

    An array containing the elements that were deleted.

    Parameters

    • start: number

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

    • deleteCount: number

      The number of elements to remove.

    • Rest ...items: ICardMetadataEnumeration[]

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

    Returns ICardMetadataEnumeration[]

Generated using TypeDoc