![]() |
Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
|
#include <qhash.h>
Public Types | |
| using | KeyType = Key |
| using | ValueType = T |
| using | Chain = MultiNodeChain<T> |
Public Member Functions | |
| MultiNode (const Key &k, Chain *c) | |
| MultiNode (Key &&k, Chain *c) noexcept(std::is_nothrow_move_assignable_v< Key >) | |
| MultiNode (MultiNode &&other) | |
| MultiNode (const MultiNode &other) | |
| ~MultiNode () | |
| template<typename ... Args> | |
| void | insertMulti (Args &&... args) |
| template<typename ... Args> | |
| void | emplaceValue (Args &&... args) |
Static Public Member Functions | |
| template<typename ... Args> | |
| static void | createInPlace (MultiNode *n, Key &&k, Args &&... args) |
| template<typename ... Args> | |
| static void | createInPlace (MultiNode *n, const Key &k, Args &&... args) |
| static qsizetype | freeChain (MultiNode *n) noexcept(std::is_nothrow_destructible_v< T >) |
Public Attributes | |
| Key | key |
| Chain * | value |
| using QHashPrivate::MultiNode< Key, T >::Chain = MultiNodeChain<T> |
| using QHashPrivate::MultiNode< Key, T >::KeyType = Key |
| using QHashPrivate::MultiNode< Key, T >::ValueType = T |
|
inline |
|
inlinenoexcept |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
| Key QHashPrivate::MultiNode< Key, T >::key |
Definition at line 156 of file qhash.h.
Referenced by MultiNode(), MultiNode(), MultiNode(), and MultiNode().
| Chain* QHashPrivate::MultiNode< Key, T >::value |
Definition at line 157 of file qhash.h.
Referenced by MultiNode(), MultiNode(), MultiNode(), MultiNode(), ~MultiNode(), emplaceValue(), freeChain(), and insertMulti().