removeListDuplicates
removeListDuplicates(l_list) =>l_newList
Description
Removes duplicate entries from a SKILL list and returns a new list with the duplicates removed.
Arguments
Value Returned
Examples
removeListDuplicates("a" 1 "a" 2 "a" 3 "a" 4)
=> ("a" 1 2 3 4)
Related Topics
Return to top