| 220 | |
| 221 | template <typename BaseSet> |
| 222 | bool SetMixin<BaseSet>::hasIntersection(SetMixin const& s) const { |
| 223 | for (auto const& v : s) { |
| 224 | if (contains(v)) { |
| 225 | return true; |
| 226 | } |
| 227 | } |
| 228 | return false; |
| 229 | } |
| 230 | |
| 231 | template <typename BaseSet> |
| 232 | std::ostream& operator<<(std::ostream& os, SetMixin<BaseSet> const& set) { |
no outgoing calls
no test coverage detected