forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Unique
angerangel edited this page Mar 20, 2013
·
1 revision
UNIQUE set1 /case /skip size
Returns the data set with duplicates removed.
UNIQUE is a native value.
- set1 (block! string! binary! bitset! typeset!)
- /case -- Use case-sensitive comparison (except bitsets)
-
/skip -- Treat the series as records of fixed size
- size (integer!)
#SOURCE
unique: make native! [ [
"Returns the data set with duplicates removed."
set1 [block! string! binary! bitset! typeset!]
/case "Use case-sensitive comparison (except bitsets)"
/skip "Treat the series as records of fixed size"
size [integer!]
] ]