BaseGraph.Equals Method (IGraph, Dictionary<INode, INode>) |
Determines whether this Graph is equal to the given Graph.
Namespace:
VDS.RDF
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntaxpublic virtual bool Equals(
IGraph g,
out Dictionary<INode, INode> mapping
)
Public Overridable Function Equals (
g As IGraph,
<OutAttribute> ByRef mapping As Dictionary(Of INode, INode)
) As Boolean
Parameters
- g
- Type: VDS.RDF.IGraph
Graph to test for equality. - mapping
- Type: System.Collections.Generic.Dictionary<INode, INode>
Mapping of Blank Nodes iff the Graphs are equal and contain some Blank Nodes.
Return Value
Type:
Boolean[Missing <returns> documentation for "M:VDS.RDF.BaseGraph.Equals(VDS.RDF.IGraph,System.Collections.Generic.Dictionary{VDS.RDF.INode,VDS.RDF.INode}@)"]
Implements
IGraph.Equals(IGraph, Dictionary<INode, INode>)
Remarks
See
GraphMatcher for documentation of the equality algorithm used.
See Also