Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Trimming values from a series?

From: brett:codeconscious at: 24-Jul-2002 11:26

Louis has already pointed out Unique If you need your series sorted, it is probably better to sort after the Unique. This way you don't need to hope that Unique keeps the sorting intact. sort unique [ "a" "b" "b" "c" "d" "e" "e" ] Regards, Brett.