class ActionController::Parameters

def select!(&block)

Equivalent to Hash#keep_if, but returns +nil+ if no changes were made.
def select!(&block)
  @parameters.select!(&block)
  self
end