MCPcopy Create free account
hub / github.com/TUC-ProAut/libRSF / merge

Method merge

include/DataSet.h:733–742  ·  view source on GitHub ↗

combine two lists*/

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

addElementMethod · 0.95

Tested by

no test coverage detected