Interface for a set of local IDs.

interface ILocalIdSet {
    size: number;
    has(localId: number): boolean;
}

Hierarchy (view full)

Properties

Methods

Properties

size: number

The number of items in the set.

Methods

  • Does this set have a particular local ID?

    Parameters

    • localId: number

      The local ID to check for.

    Returns boolean

    True if it has the local ID.