I don't know if this was posted previously, but I had the idea of a
Array#to_proc, an example would be:
[9, 19, 29].map(&[:succ, :to_s, :reverse])
=> ["01", "02", "03"]
I've seen people ask questions such as arr.map(&'meth1.meth2.meth3')
but I think using the Array#to_proc solution is cleaner.
Would this actually prove useful? It would seem that using the normal
block form would be just as much typing, though.
--
Matt