In another answer, I saw an interesting syntax for calling a method on each object in a collection in Rails (or is this really just Ruby?) I tried searching for it but I couldnt find any documentation on it.
reports.map(&:reload)
Is &:
an operator? If not, what is it? What is it called? What else can be done with the &:
operator?