Documentation
    Preparing search index...

    Interface SetLike<V>

    interface SetLike<V> {
        size: number;
        "[iterator]"(): IterableIterator<V>;
        add(value: V): this;
        clear(): void;
        delete(value: V): boolean;
        has(value: V): boolean;
        values(): IterableIterator<V>;
    }

    Type Parameters

    • V

    Hierarchy (View Summary)

    Index
    size: number