We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
hash.keys.each → each_key — Use each_key instead of .keys.each to avoid allocating an intermediate array of keys.
each_key
.keys.each
hash.keys.each { |k| ... }
hash.each_key { |k| ... }
There was an error while loading. Please reload this page.