Class: Hash
- Inherits:
-
Object
- Object
- Hash
- Defined in:
- lib/pgls/compat.rb
Instance Method Summary collapse
-
#transform_keys ⇒ Object
transform_keys was added in ruby-2.5.
Instance Method Details
#transform_keys ⇒ Object
transform_keys was added in ruby-2.5
5 6 7 8 9 |
# File 'lib/pgls/compat.rb', line 5 def transform_keys map do |k, v| [yield(k), v] end.to_h end |