intersection¶
Syntax¶
Parameters¶
list-expression-1- First of two lists whose intersection is being taken.
list-expression-2- Second of two lists whose intersection is being taken.
Returns¶
Returns a list of unique items that occur in both lists, sorted in increasing order.
Description¶
Returns a list of unique items that occur in both lists, sorted in increasing order.
Examples¶
The following returns a list containing [4,5]: