| 521 | //! Simplification of std insertion |
| 522 | template <typename Tdst, typename Tsrc> |
| 523 | inline void insert(Tdst& dst, const Tsrc& src) { |
| 524 | dst.insert(dst.begin(), src.begin(), src.end()); |
| 525 | } |
| 526 | template <typename TsetT, typename Tsrc> |
| 527 | inline void insert(std::set<TsetT>& dst, const Tsrc& src) { |
| 528 | dst.insert(src.begin(), src.end()); |