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

Implemented by

Methods