MCPcopy Create free account
hub / github.com/KDE/kdevelop / consistsOfWhitespace

Function consistsOfWhitespace

kdevplatform/language/duchain/stringhelpers.cpp:170–175  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

168
169namespace KDevelop {
170bool consistsOfWhitespace(QStringView str)
171{
172 return std::all_of(str.cbegin(), str.cend(), [](QChar c) {
173 return c.isSpace();
174 });
175}
176
177class ParamIteratorPrivate
178{

Callers 3

ParamIteratorMethod · 0.85
shouldStartCompletionMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected