method
transform_values
v7.2.3 -
Show latest stable
- Class:
ActionController::Parameters
transform_values()public
Returns a new `ActionController::Parameters` instance with the results of running `block` once for every value. The keys are unchanged.
params = ActionController::Parameters.new(a: 1, b: 2, c: 3) params.transform_values { |x| x * 2 } # => #<ActionController::Parameters {"a"=>2, "b"=>4, "c"=>6} permitted: false>