class ActionController::Parameters

def reverse_merge(other_hash)

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