in a c set class implementation, which operation does the following code represent? set unknownfunction(std::function predicate) const { set result; for (int element : *this) { if (predicate(element)) { result.add(element); } } return result; } group of answer choices
o Difference o Intersection o Union o Filter