Possible Duplicate:
What does map(&:name) mean in Ruby?
I know, that i can sort an array of objects by specific field with following code:
articles = articles.sort_by(&:date)
What actually does this magical statement ?
&:date
What is going here ?