combine two lists*/
| 731 | |
| 732 | /** combine two lists*/ |
| 733 | void merge(DataSet<KeyType, ObjectType> &List) |
| 734 | { |
| 735 | for (auto& Map: List) |
| 736 | { |
| 737 | for (auto& Element: Map.second) |
| 738 | { |
| 739 | this->addElement(Map.first, Element.first, Element.second); |
| 740 | } |
| 741 | } |
| 742 | } |
| 743 | |
| 744 | protected: |
| 745 | bool _FindBordersEqual(const KeyType &ID, const double Start, const double End, double &StartTrue, double &EndTrue) const |
nothing calls this directly
no test coverage detected