HashArrayOptions<T>: {
    ignoreDuplicates?: boolean;
    list?: T[];
}

Options for HashArray.

Type Parameters

  • T

Type declaration

  • OptionalignoreDuplicates?: boolean

    When true, any attempt to add items that collide with any items in the HashArray will be ignored.

  • Optionallist?: T[]

    An external array that is used for the list backing this HashArray allowing any owner direct access to the list.