Hello, i am trying to fix a bug in Rails, and also improve readability
of the code i am coming across in this process. I have a question: is
map(&:to_s)
preferred over
map { |n| n.to_s }
?
I was going to use the first form, but decided to ask first.
Alexey.