@eagleoutice/flowr - v2.13.1
    Preparing search index...

    A set value abstract domain with set operations and a satisfiability check.

    interface SetDomain<T> {
        from(...values: ReadonlySet<T>[]): this;
        intersect(other: this): this;
        satisfies(value: ReadonlySet<T>, comparator?: SetComparator): Ternary;
        subtract(other: this): this;
        union(other: this): this;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Implemented by

    Hierarchy-Diagram

    UML class diagram of SetDomain
    Index

    Methods