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

Function main

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

Source from the content-addressed store, hash-verified

1#include <QMultiMap>
2#include <QString>
3int main()
4{
5 QMultiMap<QString, QString> m;
6 m.insert("10", "100");
7 m.insert("20", "200");
8 m.insert("30", "300");
9
10 m.insert("20", "x");
11 m.insert("20", "11");
12 m.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