class RuboCop::Cop::Style::HashConversion

def use_zip_method_without_argument?(first_argument)

def use_zip_method_without_argument?(first_argument)
  return false unless first_argument&.send_type?
  first_argument.method?(:zip) && first_argument.arguments.empty?
end