Distinct: Difference between revisions

Content added Content deleted
(Created page with "{{primitive}} '''Distinct''', a.k.a. '''unique''' or '''uniq''', removes duplicates from a list. K9 additionally sorts the result.")
 
No edit summary
Line 1: Line 1:
{{primitive}}
{{primitive}}
'''Distinct''', a.k.a. '''unique''' or '''uniq''', removes duplicates from a list. K9 additionally sorts the result.
'''Distinct''', a.k.a. '''unique''' or '''uniq''', returns a copy of its argument without duplicate items (according to the definition of [[match]]). K9 additionally sorts the result.

?"abracadabra"
"abrcd"

?"abracadabra" /k9
"abcdr"