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

Method getNameValueString

include/DataGeneric.h:114–132  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

112 }
113
114 std::string getNameValueString() const
115 {
116 std::string Out;
117 Out.append(_Name);
118 Out.append(": ");
119
120 for(auto const &Element : _Data)
121 {
122 Out.append(" ");
123
124 for(Index nElement = 0; nElement < Element.second.size(); nElement++)
125 {
126 Out.append(std::to_string(Element.second.operator[](nElement)));
127 Out.append(" ");
128 }
129 }
130
131 return Out;
132 }
133
134 protected:
135 /** construct a specific data configuration */

Callers 8

TESTFunction · 0.80
TESTFunction · 0.80
TESTFunction · 0.80
TESTFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80
mainFunction · 0.80

Calls

no outgoing calls

Tested by 4

TESTFunction · 0.64
TESTFunction · 0.64
TESTFunction · 0.64
TESTFunction · 0.64