MCPcopy Create free account
hub / github.com/RomanKubiak/ctrlr / toString

Method toString

Source/UIComponents/CtrlrValueMap.cpp:254–269  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

252}
253
254const String CtrlrValueMap::toString() const
255{
256 String ret = "MAP: ";
257 ret << " mappedMax=" + STR(getMappedMax());
258 ret << ", mappedMin=" + STR(getMappedMin());
259 ret << ", values:\n";
260
261 for (int i=0; i<values.size(); i++)
262 {
263 ret << "{" << _STR(i) << "}: ( ";
264 ret << CtrlrValue::toString(values[i]);
265 ret << " )\n";
266 }
267
268 return (ret);
269}
270
271void CtrlrValueMap::clear()
272{

Callers 15

getUniqueNameMethod · 0.45
setXmlSourceMethod · 0.45
CtrlrAboutMethod · 0.45
keyPressedMethod · 0.45
getPropertyNameMethod · 0.45
getPropertyComponentMethod · 0.45
getElementTypeMethod · 0.45
refreshMethod · 0.45

Calls 2

toStringFunction · 0.50
sizeMethod · 0.45

Tested by

no test coverage detected