module RuboCop::AST::MethodDispatchNode

def arithmetic_operation?

Returns:
  • (Boolean) - whether the dispatched method is an arithmetic
def arithmetic_operation?
  ARITHMETIC_OPERATORS.include?(method_name)
end