Details
-
Suggestion
-
Resolution: Done
-
P3: Somewhat important
-
4.8.5, 5.1.1
-
None
-
4ec6748c6a30f74e6d8fbb90fc118b306d1fa690 c7e35ffe69a73bb144618714313673f0d0c28394
Description
I have an application that receives asynchronous data updates and stores them in a QMap. In order to reduce signalling, multiple updates may be transmitted also as a QMap. Therefore, I need to take each key/value pair in the input and insert it into the store.
At face value, this seems like exactly what QMap::unite would do, but it isn't, as unite() creates duplicate values (a la insertMulti()). Especially as QMap is "not supposed to" contain duplicate values normally, it would be useful if unite() would take a second parameter specifying how duplicates should be handled, e.g. KeepDuplicates or ReplaceDuplicates (possible also IgnoreDuplicates). QHash should have the same improvement.
Attachments
Issue Links
- resulted in
-
QTBUG-81607 moc_copy/moc.cpp:905:34: error: ‘class QMap<QByteArray, bool>’ has no member named ‘unite’
-
- Closed
-
-
QTBUG-81610 error: no member named 'insertMulti' in 'QMultiMap<QString, Node *>'
-
- Closed
-