unique¶
Syntax¶
Parameters¶
list-expression- The list from which unique elements are to be retrieved.
Returns¶
A sorted list of unique elements that occur in the list parameter.
Description¶
Returns a sorted list of unique elements that occur in the list parameter.
Examples¶
The following returns a list containing 1,2,3: