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

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

    interface NumericDomain {
        add(other: this): this;
        divide(other: this): this;
        from(...values: number[]): this;
        max(other: this): this;
        min(other: this): this;
        multiply(other: this): this;
        negate(): this;
        satisfies(value: number, comparator?: NumericalComparator): Ternary;
        subtract(other: this): this;
    }

    Hierarchy (View Summary)

    Implemented by

    Hierarchy-Diagram

    UML class diagram of NumericDomain
    Index

    Methods