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

Function skipWhitespace

kdevplatform/util/formattinghelpers.cpp:522–527  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

520
521template<typename ForwardIt>
522void skipWhitespace(ForwardIt& first, ForwardIt last)
523{
524 first = std::find_if_not(first, last, [](QChar c) {
525 return c.isSpace();
526 });
527}
528
529template<typename ForwardIt>
530struct FindResult

Callers 5

skipFuzzyAndWhitespaceFunction · 0.85
matchMethod · 0.85
matchFormattedTextFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected