class ActionController::Parameters

def reverse_merge!(other_hash)

current hash merged into +other_hash+.
Returns the current ActionController::Parameters instance with
def reverse_merge!(other_hash)
  @parameters.merge!(other_hash.to_h) { |key, left, right| left }
  self
end