| 276 | |
| 277 | template <typename Value, typename Compare, typename Allocator> |
| 278 | Set<Value, Compare, Allocator> Set<Value, Compare, Allocator>::combination(Set const& s) const { |
| 279 | Set ret(*this); |
| 280 | ret.addAll(s); |
| 281 | return ret; |
| 282 | } |
| 283 | |
| 284 | template <typename BaseMap> |
| 285 | template <typename Container> |