From: Devin Mullins Date: 2007-04-03T06:07:14+09:00 Subject: Re: Map Or Collect Redux RubyTalk@gmail.com wrote: > I would like to know what everyone's preference is? > I like using collect. Mostly the non-smalltalk terms: map, find, find_all, but reject. (map == mathematics background.) When I'm dealing with an ActiveRecord::AssociationProxy, find and find_all are overridden by Rails, so I tend to use detect and select. I'm not sure I like that, though, vice just saying to_a.find. Devin