set_difference(A, B) - Return A - B
Declared in <llvm/ADT/SetOperations.h>
template<
class S1Ty,
class S2Ty>
S1Ty
set_difference(
S1Ty const& S1,
S2Ty const& S2);
A new set containing elements of S1 that are not in S2.
| Name | Description |
|---|---|
| S1 | Set whose elements are considered for the result. |
| S2 | Set of elements to exclude from the result. |