Pretty short question: Is it possible to use the Symbol#to_proc shorthand (e.g. lambda(&:upcase) with the stabby lambda syntax in Ruby? For example, I can say this:
p = lambda &:upcase
to get a Proc in p but I can't find an equivalent using ->. This:
p = -> &:upcase
doesn't work, of course.