returns the complement of a set in another
set3 = complement(set1,set2)
set
set
set
The function complement
returns the set
set3
which are the elements of set2
which are not in the set set1
. The set
set1
must be a subset of
set2
.