class ActionController::Parameters

def merge!(other_hash, &block)

+other_hash+ merged into current hash.
Returns the current +ActionController::Parameters+ instance with

:call-seq: merge!(other_hash)
#
def merge!(other_hash, &block)
  @parameters.merge!(other_hash.to_h, &block)
  self
end