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

    Interface DifferenceReport

    Unifies the shape of all difference reports. They should have an array of comments on the potential differences/equality of the structures and a function to check if they are really equal.

    interface DifferenceReport {
        comments(): readonly string[] | undefined;
        isEqual(): boolean;
    }

    Hierarchy (View Summary)

    Hierarchy-Diagram

    UML class diagram of DifferenceReport
    Index

    Methods

    • A human-readable description of differences during the comparison In combination with isEqual this can be used to provide detailed explanation on equal structures as well (e.g., if structures could be equal).

      Returns readonly string[] | undefined

    • Returns boolean

      true iff the compared structures are equal (i.e., the diff is empty)