Method: LazyGraph::ObjectNode::SymbolHash#method_missing
- Defined in:
- lib/lazy_graph/node/symbol_hash.rb
#method_missing(name, *args, &block) ⇒ Object
26 27 28 29 30 31 32 |
# File 'lib/lazy_graph/node/symbol_hash.rb', line 26 def method_missing(name, *args, &block) if key?(name) self[name] else super end end |