setdiff
setdiff(x, y)
Performs set difference on two lists
Args: x (List): a List with atomic elements y (List): a List with atomic elements
Returns: a list with unique elements in x which are not in y
Examples: >>> from rlike import * >>> x = [1, 2, 3, 3] >>> y = [3, 4, 6] >>> setdiff(x, y)
[1, 2]