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

Function main

plugins/debuggercommon/tests/debuggees/qmultihashstring.cpp:3–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include <QMultiHash>
2#include <QString>
3int main()
4{
5 QMultiHash<QString, QString> h;
6 h["10"] = "100";
7 h["20"] = "200";
8 h["30"] = "300";
9
10 h.insert("20", "x");
11 h.insert("20", "11");
12 h.remove("20", "x");
13
14 return 0;
15}

Callers

nothing calls this directly

Calls 2

insertMethod · 0.45
removeMethod · 0.45

Tested by

no test coverage detected