Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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>
3
int 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
insert
Method · 0.45
remove
Method · 0.45
Tested by
no test coverage detected