MCPcopy Create free account
hub / github.com/ElementsProject/elements / SplitSkipEmptyParts

Function SplitSkipEmptyParts

src/qt/guiutil.h:363–370  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

361 */
362 template <typename SeparatorType>
363 QStringList SplitSkipEmptyParts(const QString& string, const SeparatorType& separator)
364 {
365 #if (QT_VERSION >= QT_VERSION_CHECK(5, 14, 0))
366 return string.split(separator, Qt::SkipEmptyParts);
367 #else
368 return string.split(separator, QString::SkipEmptyParts);
369 #endif
370 }
371
372 /**
373 * Queue a function to run in an object's event loop. This can be

Callers 2

GetProxySettingFunction · 0.85
setModelMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected