set_difference¶
Syntax¶
Parameters¶
list-expression-1- First of two lists whose difference is being taken.
list-expression-2- Second of two lists whose difference is being taken.
Returns¶
Returns a list of unique items that occur in first list but not in second list, sorted in increasing order.
Description¶
Returns a list of unique items that occur in the first list but not in the second list.
Examples¶
The following returns a list containing the values [1,2,3]: