MCPcopy Create free account
hub / github.com/aethersdr/AetherSDR / formatJsonIntArray

Function formatJsonIntArray

src/gui/SliceTroubleshootingDialog.cpp:98–106  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96}
97
98QString formatJsonIntArray(const QJsonArray& values)
99{
100 QStringList parts;
101 for (const QJsonValue& value : values) {
102 if (value.isDouble())
103 parts << QString::number(value.toInt());
104 }
105 return parts.isEmpty() ? QStringLiteral("none") : parts.join(QStringLiteral("`, `"));
106}
107
108QString formatPanBullet(const QJsonObject& pan)
109{

Callers 1

formatPanBulletFunction · 0.85

Calls 1

isEmptyMethod · 0.45

Tested by

no test coverage detected