Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!news.dougwise.org!nntpfeed.proxad.net!proxad.net!feeder1-2.proxad.net!usenet-fr.net!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!talisker.lacave.net!lacave.net!not-for-mail From: Brian Candler Newsgroups: comp.lang.ruby Subject: Re: Using the spaceship operator Date: Tue, 26 Apr 2011 05:08:41 -0500 Organization: Service de news de lacave.net Lines: 27 Message-ID: <81fdf3e2a9ff50645fd3988c0acd6630@ruby-forum.com> References: <084e58ba-184f-470c-a341-68bfecc192a9@w36g2000vbi.googlegroups.com> <4aa8c4b1-e8e8-4726-9e20-42901336857d@m40g2000vbt.googlegroups.com> NNTP-Posting-Host: bristol.highgroove.com Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: talisker.lacave.net 1303812536 89957 65.111.164.187 (26 Apr 2011 10:08:56 GMT) X-Complaints-To: abuse@lacave.net NNTP-Posting-Date: Tue, 26 Apr 2011 10:08:56 +0000 (UTC) In-Reply-To: <4aa8c4b1-e8e8-4726-9e20-42901336857d@m40g2000vbt.googlegroups.com> X-Received-From: This message has been automatically forwarded from the ruby-talk mailing list by a gateway at comp.lang.ruby. If it is SPAM, it did not originate at comp.lang.ruby. Please report the original sender, and not us. Thanks! For more details about this gateway, please visit: http://blog.grayproductions.net/categories/the_gateway X-Mail-Count: 382195 X-Ml-Name: ruby-talk X-Rubymirror: Yes X-Ruby-Talk: <81fdf3e2a9ff50645fd3988c0acd6630@ruby-forum.com> Xref: x330-a1.tempe.blueboxinc.net comp.lang.ruby:3508 RichardOnRails wrote in post #994401: > While I'm still playing with delegation, I've taken "ownership" of a > couple of the ideas previously offered, most notably "sort_by" and: > class Meta < Array > def <=>(other) > self[1] <=> other[1] > end > end > > a = [] > [ [:A,12], [:B,30], [:C,4] ]. each { |element| a << > Meta.new(element) } > p a.sort And a slightly tidier way is to use 'map' (aliased as 'collect') which iterates and accumulates the output array in one go: a = [ [:A,12], [:B,30], [:C,4] ].map { |element| Meta.new(element) } p a.sort Regards, Brian. -- Posted via http://www.ruby-forum.com/.