rfw2d
    Preparing search index...

    Interface ObjectSet<O>

    A set-like structure.

    interface ObjectSet<O> {
        add(o: O): this;
        clear(): void;
        delete(o: O): boolean;
        has(o: O): boolean;
    }

    Type Parameters

    • O
    Index

    Methods