29 ::std::set_intersection(
30 set1.begin(), set1.end(),
31 set2.begin(), set2.end(),
32 ::std::inserter(tmpSet, tmpSet.end()));
33 return tmpSet.empty();
bool isSetIntersectionEmpty(const ::std::set< T > &set1, const ::std::set< T > &set2)
Test whether the two given sets have empty intersection.