From: Arlen Cuss Date: 2008-02-24T22:55:11+09:00 Subject: Re: passing method references in python & ruby ------=_Part_7634_6847463.1203861318293 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi there, You can skip the between and do this: >> def add_one(n) >> n+1 >> end => nil >> [3,6,8].map &method(:add_one) => [4, 7, 9] Personally, I like doing it this way. You could always try monkey-patching (ooh, buzzword) Symbol by adding Symbol#to_proc to do some method resolution. Not sure how well it'll work for you, but a guess. Arlen ------=_Part_7634_6847463.1203861318293--