Method: NetworkX::Graph#nodes
- Defined in:
- lib/networkx/graph.rb
#nodes(data: false) ⇒ Hash | Array
Return nodes of graph
222 223 224 225 226 227 228 |
# File 'lib/networkx/graph.rb', line 222 def nodes(data: false) if data @nodes else @nodes.keys end end |