I wrote this code:
my.objects.map { |object| object.key }
My rubocop said:
Pass &:key as an argument to map instead of a block.
Is there a short way to do the same thing?
Pass &:key as an argument to map instead of a block
means:
my.objects.map(&:key)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With