in reply to Most elegant way to dispose of duplicates using map

I find the most elegant way to remove duplicates is to not use map:
my %tmp; @tmp{@partTuples} = (); @partTuples = keys %tmp;
Although I would use map if there was a need to keep the order.