hasNode method

bool hasNode(
  1. int index
)

Return true if the graph has the given node index.

Implementation

bool hasNode(int index ) {
	return _nodes.containsKey( index );
}