MCPcopy Create free account
hub / github.com/GilesBathgate/RapCAD / getValueString

Method getValueString

src/vectorvalue.cpp:33–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31}
32
33QString VectorValue::getValueString() const
34{
35 QString result;
36 result.append("[");
37 OnceOnly first;
38 for(Value* v: elements) {
39 if(!first())
40 result.append(",");
41 result.append(v->getValueString());
42 }
43 result.append("]");
44 return result;
45}
46
47bool VectorValue::isTrue() const
48{

Callers

nothing calls this directly

Calls 1

appendMethod · 0.80

Tested by

no test coverage detected