Returns whether or not the [Node] [node] is a member of this Graph
.
Source
bool containsNode(PointNode node) {
return this._adjacencyMap.containsKey(node);
}
Returns whether or not the [Node] [node] is a member of this Graph
.
bool containsNode(PointNode node) {
return this._adjacencyMap.containsKey(node);
}