ListRemoveduplicates()

Removes all duplicate values within the list, returning back the new list

Usage

STRING = ListRemoveduplicates( list, delimiter )
Argument Summary
list list
delimiter delimiter - default comma (,) [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

ListRemoveduplicates(
   list=?, 
   delimiter=?
);

Supports passing parameters as a structure using ArgumentCollection:

ListRemoveduplicates( ArgumentCollection={
   list : ?, 
   delimiter : ?
} );