class ActionController::Parameters

def merge!(other_hash)

+other_hash+ merged into current hash.
Returns the current ActionController::Parameters instance with
def merge!(other_hash)
  @parameters.merge!(other_hash.to_h)
  self
end