class RuboCop::Cop::Style::EachWithObject

def reduce_method?(method)

def reduce_method?(method)
  return false unless method.send_type?
  _, method_name, _method_arg = *method
  METHODS.include? method_name
end