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

    A value abstract domain with abstraction function and a satisfiability check for concrete values.

    interface BooleanDomain {
        and(other: this): this;
        from(...values: boolean[]): this;
        negate(): this;
        or(other: this): this;
        satisfies(value: boolean): Ternary;
    }

    Hierarchy (View Summary)

    Hierarchy-Diagram

    UML class diagram of BooleanDomain
    Index

    Methods