Qt container documenation: Misc fix for std comparison
std::map/multimap/unordered_map/unordered:multimap also need a 'Key'. Fixes: QTBUG-89904 Pick-to: 6.6 6.5 6.2 Change-Id: Ib653c941b671905762270c82218e50dfed8fc8c6 Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>bb10
parent
cb4e7f4176
commit
aeeb77650f
|
|
@ -387,16 +387,16 @@
|
|||
\l{QHash}.
|
||||
|
||||
\row \li \l{QMap}<Key, T>
|
||||
\li Similar to std::map<T>.
|
||||
\li Similar to std::map<Key, T>.
|
||||
|
||||
\row \li \l{QMultiMap}<Key, T>
|
||||
\li Similar to std::multimap<T>.
|
||||
\li Similar to std::multimap<Key, T>.
|
||||
|
||||
\row \li \l{QHash}<Key, T>
|
||||
\li Most similar to std::unordered_map<T>.
|
||||
\li Most similar to std::unordered_map<Key, T>.
|
||||
|
||||
\row \li \l{QMultiHash}<Key, T>
|
||||
\li Most similar to std::unordered_multimap<T>.
|
||||
\li Most similar to std::unordered_multimap<Key, T>.
|
||||
|
||||
\endtable
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue