Documentation
    Preparing search index...

    Interface IQuantumSet<TValue>

    This is the simple Set style interface for the QuantumSet class implementation.

    interface IQuantumSet<TValue> {
        add(value: TValue): Promise<void>;
        clear(): Promise<void>;
        delete(value: TValue | TValue[]): Promise<boolean>;
        has(value: TValue): Promise<boolean>;
        init(): Promise<void>;
        size(): Promise<number>;
        values(): Promise<IterableIterator<TValue, any, any>>;
    }

    Type Parameters

    • TValue

    Hierarchy (View Summary)

    Implemented by

    Index

    Methods