class ActionController::Parameters

def merge(other_hash)

+other_hash+ merged into current hash.
Returns a new +ActionController::Parameters+ instance with all keys from
def merge(other_hash)
  new_instance_with_inherited_permitted_status(
    @parameters.merge(other_hash.to_h)
  )
end