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

Function qHash

kdevplatform/util/path.cpp:439–447  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

437
438namespace KDevelop {
439size_t qHash(const Path& path)
440{
441 KDevHash hash;
442 for (const QString& segment : path.segments()) {
443 hash << qHash(segment);
444 }
445
446 return hash;
447}
448
449template<typename Container>
450static Path::List toPathList_impl(const Container& list)

Callers 1

test_path.cppFile · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected