Interface SetConstructor

    interface SetConstructor {
        new SetConstructornew <T>(values?: readonly T[]): Set<T>;
        new SetConstructornew <T>(iterable?: Iterable<T, any, any>): Set<T>;
        [species]: SetConstructor;
        prototype: Set<any>;
    }

    Constructors

    Properties

    Constructors

    • Type Parameters

      • T = any

      Parameters

      • Optionalvalues: readonly T[]

      Returns Set<T>

    • Type Parameters

      • T

      Parameters

      Returns Set<T>

    Properties

    [species]: SetConstructor
    prototype: Set<any>