Method: LemonGraph::NodeMap#graph

Defined in:
ext/lemongraph/node_map.cc

#graphGraph, Digraph

Returns the graph this node map is related to.

Returns:



745
746
747
748
749
# File 'ext/lemongraph/node_map.cc', line 745

VALUE lemongraph_nodemap_graph(VALUE self)
{
	LemonGraph::NodeMap& nm = lemongraph_nodemap_rb2ref(self);
	return nm.graph();
}