FuncType - v0.8.64
    Preparing search index...

    Type Alias Set<A>

    Set: {
        add: (value: A) => Set<A>;
        contains: (value: A) => boolean;
        flatMap: <B>(f: (a: A) => IterableType<B>) => Set<B>;
        has: (value: A) => boolean;
        map: <B>(f: (a: A) => B) => Set<B>;
        remove: (value: A) => Set<A>;
        toList: () => List<A>;
        toSet: () => Set<A>;
        toString: () => string;
    } & IterableType<A> & Collection<A> & Typeable<"Set">

    Type Parameters

    • A