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

    Interface EdgeIndexedGraph<EdgeMap>

    The minimum a graph has to offer for GraphDiff to compare its edges.

    interface EdgeIndexedGraph<EdgeMap> {
        edges(): Iterable<readonly [NodeId, EdgeMap]>;
        hasVertex(id: NodeId): boolean;
    }

    Type Parameters

    • EdgeMap
    Index