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)