Method: CallableTree::Node::Internal::Strategy#==

Defined in:
lib/callable_tree/node/internal/strategy.rb

#==(other) ⇒ Object



15
16
17
# File 'lib/callable_tree/node/internal/strategy.rb', line 15

def ==(other)
  name == other.name && matchable? == other.matchable? && terminable? == other.terminable?
end