Method: LemonGraph::NodeMap#hash
- Defined in:
- ext/lemongraph/node_map.cc
#hash ⇒ Integer
Returns the integer hash value for self.
1005 1006 1007 1008 1009 |
# File 'ext/lemongraph/node_map.cc', line 1005
VALUE lemongraph_nodemap_hash(VALUE self)
{
LemonGraph::NodeMap& nm = lemongraph_nodemap_rb2ref(self);
return nm.hash();
}
|