Distinct: Difference between revisions

("Add category")
("Better category ordering, add redirects to categories, fix pseudo-adverb categories")
 
(One intermediate revision by the same user not shown)
Line 11: Line 11:
{x@&(x?x)=!#x} /k9 unsorted unique
{x@&(x?x)=!#x} /k9 unsorted unique


[[Category:Verbs]]
[[Category:Operator verbs]]
[[Category:Operator verbs]]
[[Category:Primitives]]

Latest revision as of 06:15, 9 July 2022

Distinct
?x

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"
{x@&(x?x)=!#x}  /k9 unsorted unique