Creates a new set containing the difference of the elements of the two sets passed as parameters.
Creates a new set containing the difference of the elements of the two sets passed as parameters. The difference contains all elements that are contained in the first set but are not contained in the second set.This function creates an empty clone of the first of the two parameter sets and then iterates the first of the two sets and adds all elements to the clone that are not contained in the second set.