reverse_merge(other_hash)
Instance Public methods
Merges the caller into other_hash
. For example,
1 | options = options.reverse_merge(size: 25 , velocity: 10 ) |
is equivalent to
1 | options = { size: 25 , velocity: 10 }.merge(options) |
This is particularly useful for initializing an options hash with default values.
Please login to continue.