From: Gabriel Dragffy Date: 2007-08-21T01:11:58+09:00 Subject: Re: Detecting duplicates in an array, anything in the standard library ? On 20 Aug 2007, at 13:45, thomas.macklin@gmail.com wrote: > On Aug 19, 5:16 pm, Robert Klemme wrote: >> On 19.08.2007 23:15, Robert Klemme wrote: >> >> >> >>> On 19.08.2007 12:38, Thibaut Barr�re wrote: >>>> Hi! >> >>>> Just wondering if there is something simple already built in the >>>> std >>>> library to remove duplicates from an array (or an enumerable). how about calling the uniq method: [1,2,2,3].uniq or did I miss the point again? ;)