| 12 | //! Simplification of std insertion |
| 13 | template <typename Tdst, typename Tsrc> |
| 14 | inline void insert(Tdst& dst, const Tsrc& src) { |
| 15 | dst.insert(dst.begin(), src.begin(), src.end()); |
| 16 | } |
| 17 | template <typename TsetT, typename Tsrc> |
| 18 | inline void insert(std::set<TsetT>& dst, const Tsrc& src) { |
| 19 | dst.insert(src.begin(), src.end()); |
no test coverage detected