#[repr(C)]
pub struct QHashOfQStringQVariant { /* private fields */ }
Expand description

The QHash class is a template class that provides a hash-table-based dictionary.

C++ class: QHash<QString, QVariant>.

C++ documentation:

The QHash class is a template class that provides a hash-table-based dictionary.

QHash<Key, T> is one of Qt's generic container classes. It stores (key, value) pairs and provides very fast lookup of the value associated with a key.

QHash provides very similar functionality to QMap. The differences are:

  • QHash provides faster lookups than QMap. (See Algorithmic Complexity for details.)
  • When iterating over a QMap, the items are always sorted by key. With QHash, the items are arbitrarily ordered.
  • The key type of a QMap must provide operator<(). The key type of a QHash must provide operator==() and a global hash function called qHash() (see qHash).

Here's an example QHash with QString keys and int values:

QHash<QString, int> hash;

To insert a (key, value) pair into the hash, you can use operator[]():

hash[“one”] = 1; hash[“three”] = 3; hash[“seven”] = 7;

This inserts the following three (key, value) pairs into the QHash: ("one", 1), ("three", 3), and ("seven", 7). Another way to insert items into the hash is to use insert():

hash.insert(“twelve”, 12);

To look up a value, use operator[]() or value():

int num1 = hash[“thirteen”]; int num2 = hash.value(“thirteen”);

If there is no item with the specified key in the hash, these functions return a default-constructed value.

If you want to check whether the hash contains a particular key, use contains():

int timeout = 30; if (hash.contains(“TIMEOUT”)) timeout = hash.value(“TIMEOUT”);

There is also a value() overload that uses its second argument as a default value if there is no item with the specified key:

int timeout = hash.value(“TIMEOUT”, 30);

In general, we recommend that you use contains() and value() rather than operator[]() for looking up a key in a hash. The reason is that operator[]() silently inserts an item into the hash if no item exists with the same key (unless the hash is const). For example, the following code snippet will create 1000 items in memory:

// WRONG QHash<int, QWidget *> hash; ... for (int i = 0; i < 1000; ++i) { if (hash[i] == okButton) cout << “Found button at index “ << i << endl; }

To avoid this problem, replace hash[i] with hash.value(i) in the code above.

Internally, QHash uses a hash table to perform lookups. Unlike Qt 3's QDict class, which needed to be initialized with a prime number, QHash's hash table automatically grows and shrinks to provide fast lookups without wasting too much memory. You can still control the size of the hash table by calling reserve() if you already know approximately how many items the QHash will contain, but this isn't necessary to obtain good performance. You can also call capacity() to retrieve the hash table's size.

If you want to navigate through all the (key, value) pairs stored in a QHash, you can use an iterator. QHash provides both Java-style iterators (QHashIterator and QMutableHashIterator) and STL-style iterators (QHash::const_iterator and QHash::iterator). Here's how to iterate over a QHash<QString, int> using a Java-style iterator:

QHashIterator<QString, int> i(hash); while (i.hasNext()) { i.next(); cout << i.key() << “: “ << i.value() << endl; }

Here's the same code, but using an STL-style iterator:

QHash<QString, int>::const_iterator i = hash.constBegin(); while (i != hash.constEnd()) { cout << i.key() << “: “ << i.value() << endl; ++i; }

QHash is unordered, so an iterator's sequence cannot be assumed to be predictable. If ordering by key is required, use a QMap.

Normally, a QHash allows only one value per key. If you call insert() with a key that already exists in the QHash, the previous value is erased. For example:

hash.insert(“plenty”, 100); hash.insert(“plenty”, 2000); // hash.value(“plenty”) == 2000

However, you can store multiple values per key by using insertMulti() instead of insert() (or using the convenience subclass QMultiHash). If you want to retrieve all the values for a single key, you can use values(const Key &key), which returns a QList<T>:

QList<int> values = hash.values(“plenty”); for (int i = 0; i < values.size(); ++i) cout << values.at(i) << endl;

The items that share the same key are available from most recently to least recently inserted. A more efficient approach is to call find() to get the iterator for the first item with a key and iterate from there:

QHash<QString, int>::iterator i = hash.find(“plenty”); while (i != hash.end() && i.key() == “plenty”) { cout << i.value() << endl; ++i; }

If you only need to extract the values from a hash (not the keys), you can also use foreach:

QHash<QString, int> hash; ... foreach (int value, hash) cout << value << endl;

Items can be removed from the hash in several ways. One way is to call remove(); this will remove any item with the given key. Another way is to use QMutableHashIterator::remove(). In addition, you can clear the entire hash using clear().

QHash's key and value data types must be assignable data types. You cannot, for example, store a QWidget as a value; instead, store a QWidget *.

The qHash() hashing function

A QHash's key type has additional requirements other than being an assignable data type: it must provide operator==(), and there must also be a qHash() function in the type's namespace that returns a hash value for an argument of the key's type.

The qHash() function computes a numeric value based on a key. It can use any algorithm imaginable, as long as it always returns the same value if given the same argument. In other words, if e1 == e2, then qHash(e1) == qHash(e2) must hold as well. However, to obtain good performance, the qHash() function should attempt to return different hash values for different keys to the largest extent possible.

For a key type K, the qHash function must have one of these signatures:

uint qHash(K key); uint qHash(const K &key);

uint qHash(K key, uint seed); uint qHash(const K &key, uint seed);

The two-arguments overloads take an unsigned integer that should be used to seed the calculation of the hash function. This seed is provided by QHash in order to prevent a family of algorithmic complexity attacks. If both a one-argument and a two-arguments overload are defined for a key type, the latter is used by QHash (note that you can simply define a two-arguments version, and use a default value for the seed parameter).

Here's a partial list of the C++ and Qt types that can serve as keys in a QHash: any integer type (char, unsigned long, etc.), any pointer type, QChar, QString, and QByteArray. For all of these, the <QHash> header defines a qHash() function that computes an adequate hash value. Many other Qt classes also declare a qHash overload for their type; please refer to the documentation of each class.

If you want to use other types as the key, make sure that you provide operator==() and a qHash() implementation.

Example:

#ifndef EMPLOYEE_H #define EMPLOYEE_H

class Employee { public: Employee() {} Employee(const QString &name, const QDate &dateOfBirth); ...

private: QString myName; QDate myDateOfBirth; };

inline bool operator==(const Employee &e1, const Employee &e2) { return e1.name() == e2.name() && e1.dateOfBirth() == e2.dateOfBirth(); }

inline uint qHash(const Employee &key, uint seed) { return qHash(key.name(), seed) ^ key.dateOfBirth().day(); }

#endif // EMPLOYEE_H

In the example above, we've relied on Qt's global qHash(const QString &, uint) to give us a hash value for the employee's name, and XOR'ed this with the day they were born to help produce unique hashes for people with the same name.

Note that the implementation of the qHash() overloads offered by Qt may change at any time. You must not rely on the fact that qHash() will give the same results (for the same inputs) across different Qt versions.

Algorithmic complexity attacks

All hash tables are vulnerable to a particular class of denial of service attacks, in which the attacker carefully pre-computes a set of different keys that are going to be hashed in the same bucket of a hash table (or even have the very same hash value). The attack aims at getting the worst-case algorithmic behavior (O(n) instead of amortized O(1), see Algorithmic Complexity for the details) when the data is fed into the table.

In order to avoid this worst-case behavior, the calculation of the hash value done by qHash() can be salted by a random seed, that nullifies the attack's extent. This seed is automatically generated by QHash once per process, and then passed by QHash as the second argument of the two-arguments overload of the qHash() function.

This randomization of QHash is enabled by default. Even though programs should never depend on a particular QHash ordering, there may be situations where you temporarily need deterministic behavior, for example for debugging or regression testing. To disable the randomization, define the environment variable QT_HASH_SEED. The contents of that variable, interpreted as a decimal value, will be used as the seed for qHash(). Alternatively, you can call the qSetGlobalQHashSeed() function.

Implementations§

source§

impl QHashOfQStringQVariant

source

pub unsafe fn begin_mut(&self) -> CppBox<Iterator>

Returns an STL-style iterator pointing to the first item in the hash.

Calls C++ function: QHash<QString, QVariant>::iterator QHash<QString, QVariant>::begin().

C++ documentation:

Returns an STL-style iterator pointing to the first item in the hash.

See also constBegin() and end().

source

pub unsafe fn begin(&self) -> CppBox<ConstIterator>

This is an overloaded function.

Calls C++ function: QHash<QString, QVariant>::const_iterator QHash<QString, QVariant>::begin() const.

C++ documentation:

This is an overloaded function.

source

pub unsafe fn capacity(&self) -> c_int

Returns the number of buckets in the QHash's internal hash table.

Calls C++ function: int QHash<QString, QVariant>::capacity() const.

C++ documentation:

Returns the number of buckets in the QHash’s internal hash table.

The sole purpose of this function is to provide a means of fine tuning QHash's memory usage. In general, you will rarely ever need to call this function. If you want to know how many items are in the hash, call size().

See also reserve() and squeeze().

source

pub unsafe fn cbegin(&self) -> CppBox<ConstIterator>

Returns a const STL-style iterator pointing to the first item in the hash.

Calls C++ function: QHash<QString, QVariant>::const_iterator QHash<QString, QVariant>::cbegin() const.

C++ documentation:

Returns a const STL-style iterator pointing to the first item in the hash.

This function was introduced in Qt 5.0.

See also begin() and cend().

source

pub unsafe fn cend(&self) -> CppBox<ConstIterator>

Returns a const STL-style iterator pointing to the imaginary item after the last item in the hash.

Calls C++ function: QHash<QString, QVariant>::const_iterator QHash<QString, QVariant>::cend() const.

C++ documentation:

Returns a const STL-style iterator pointing to the imaginary item after the last item in the hash.

This function was introduced in Qt 5.0.

See also cbegin() and end().

source

pub unsafe fn clear(&self)

Removes all items from the hash.

Calls C++ function: void QHash<QString, QVariant>::clear().

C++ documentation:

Removes all items from the hash.

See also remove().

source

pub unsafe fn const_begin(&self) -> CppBox<ConstIterator>

Returns a const STL-style iterator pointing to the first item in the hash.

Calls C++ function: QHash<QString, QVariant>::const_iterator QHash<QString, QVariant>::constBegin() const.

C++ documentation:

Returns a const STL-style iterator pointing to the first item in the hash.

See also begin() and constEnd().

source

pub unsafe fn const_end(&self) -> CppBox<ConstIterator>

Returns a const STL-style iterator pointing to the imaginary item after the last item in the hash.

Calls C++ function: QHash<QString, QVariant>::const_iterator QHash<QString, QVariant>::constEnd() const.

C++ documentation:

Returns a const STL-style iterator pointing to the imaginary item after the last item in the hash.

See also constBegin() and end().

source

pub unsafe fn const_find( &self, key: impl CastInto<Ref<QString>> ) -> CppBox<ConstIterator>

Returns an iterator pointing to the item with the key in the hash.

Calls C++ function: QHash<QString, QVariant>::const_iterator QHash<QString, QVariant>::constFind(const QString& key) const.

C++ documentation:

Returns an iterator pointing to the item with the key in the hash.

If the hash contains no item with the key, the function returns constEnd().

This function was introduced in Qt 4.1.

See also find() and QMultiHash::constFind().

source

pub unsafe fn contains(&self, key: impl CastInto<Ref<QString>>) -> bool

Returns true if the hash contains an item with the key; otherwise returns false.

Calls C++ function: bool QHash<QString, QVariant>::contains(const QString& key) const.

C++ documentation:

Returns true if the hash contains an item with the key; otherwise returns false.

See also count() and QMultiHash::contains().

source

pub unsafe fn copy_from( &self, other: impl CastInto<Ref<QHashOfQStringQVariant>> ) -> Ref<QHashOfQStringQVariant>

The QHash class is a template class that provides a hash-table-based dictionary.

Calls C++ function: QHash<QString, QVariant>& QHash<QString, QVariant>::operator=(const QHash<QString, QVariant>& other).

C++ documentation:

The QHash class is a template class that provides a hash-table-based dictionary.

QHash<Key, T> is one of Qt's generic container classes. It stores (key, value) pairs and provides very fast lookup of the value associated with a key.

QHash provides very similar functionality to QMap. The differences are:

  • QHash provides faster lookups than QMap. (See Algorithmic Complexity for details.)
  • When iterating over a QMap, the items are always sorted by key. With QHash, the items are arbitrarily ordered.
  • The key type of a QMap must provide operator<(). The key type of a QHash must provide operator==() and a global hash function called qHash() (see qHash).

Here's an example QHash with QString keys and int values:

QHash<QString, int> hash;

To insert a (key, value) pair into the hash, you can use operator[]():

hash[“one”] = 1; hash[“three”] = 3; hash[“seven”] = 7;

This inserts the following three (key, value) pairs into the QHash: ("one", 1), ("three", 3), and ("seven", 7). Another way to insert items into the hash is to use insert():

hash.insert(“twelve”, 12);

To look up a value, use operator[]() or value():

int num1 = hash[“thirteen”]; int num2 = hash.value(“thirteen”);

If there is no item with the specified key in the hash, these functions return a default-constructed value.

If you want to check whether the hash contains a particular key, use contains():

int timeout = 30; if (hash.contains(“TIMEOUT”)) timeout = hash.value(“TIMEOUT”);

There is also a value() overload that uses its second argument as a default value if there is no item with the specified key:

int timeout = hash.value(“TIMEOUT”, 30);

In general, we recommend that you use contains() and value() rather than operator[]() for looking up a key in a hash. The reason is that operator[]() silently inserts an item into the hash if no item exists with the same key (unless the hash is const). For example, the following code snippet will create 1000 items in memory:

// WRONG QHash<int, QWidget *> hash; ... for (int i = 0; i < 1000; ++i) { if (hash[i] == okButton) cout << “Found button at index “ << i << endl; }

To avoid this problem, replace hash[i] with hash.value(i) in the code above.

Internally, QHash uses a hash table to perform lookups. Unlike Qt 3's QDict class, which needed to be initialized with a prime number, QHash's hash table automatically grows and shrinks to provide fast lookups without wasting too much memory. You can still control the size of the hash table by calling reserve() if you already know approximately how many items the QHash will contain, but this isn't necessary to obtain good performance. You can also call capacity() to retrieve the hash table's size.

If you want to navigate through all the (key, value) pairs stored in a QHash, you can use an iterator. QHash provides both Java-style iterators (QHashIterator and QMutableHashIterator) and STL-style iterators (QHash::const_iterator and QHash::iterator). Here's how to iterate over a QHash<QString, int> using a Java-style iterator:

QHashIterator<QString, int> i(hash); while (i.hasNext()) { i.next(); cout << i.key() << “: “ << i.value() << endl; }

Here's the same code, but using an STL-style iterator:

QHash<QString, int>::const_iterator i = hash.constBegin(); while (i != hash.constEnd()) { cout << i.key() << “: “ << i.value() << endl; ++i; }

QHash is unordered, so an iterator's sequence cannot be assumed to be predictable. If ordering by key is required, use a QMap.

Normally, a QHash allows only one value per key. If you call insert() with a key that already exists in the QHash, the previous value is erased. For example:

hash.insert(“plenty”, 100); hash.insert(“plenty”, 2000); // hash.value(“plenty”) == 2000

However, you can store multiple values per key by using insertMulti() instead of insert() (or using the convenience subclass QMultiHash). If you want to retrieve all the values for a single key, you can use values(const Key &key), which returns a QList<T>:

QList<int> values = hash.values(“plenty”); for (int i = 0; i < values.size(); ++i) cout << values.at(i) << endl;

The items that share the same key are available from most recently to least recently inserted. A more efficient approach is to call find() to get the iterator for the first item with a key and iterate from there:

QHash<QString, int>::iterator i = hash.find(“plenty”); while (i != hash.end() && i.key() == “plenty”) { cout << i.value() << endl; ++i; }

If you only need to extract the values from a hash (not the keys), you can also use foreach:

QHash<QString, int> hash; ... foreach (int value, hash) cout << value << endl;

Items can be removed from the hash in several ways. One way is to call remove(); this will remove any item with the given key. Another way is to use QMutableHashIterator::remove(). In addition, you can clear the entire hash using clear().

QHash's key and value data types must be assignable data types. You cannot, for example, store a QWidget as a value; instead, store a QWidget *.

The qHash() hashing function

A QHash's key type has additional requirements other than being an assignable data type: it must provide operator==(), and there must also be a qHash() function in the type's namespace that returns a hash value for an argument of the key's type.

The qHash() function computes a numeric value based on a key. It can use any algorithm imaginable, as long as it always returns the same value if given the same argument. In other words, if e1 == e2, then qHash(e1) == qHash(e2) must hold as well. However, to obtain good performance, the qHash() function should attempt to return different hash values for different keys to the largest extent possible.

For a key type K, the qHash function must have one of these signatures:

uint qHash(K key); uint qHash(const K &key);

uint qHash(K key, uint seed); uint qHash(const K &key, uint seed);

The two-arguments overloads take an unsigned integer that should be used to seed the calculation of the hash function. This seed is provided by QHash in order to prevent a family of algorithmic complexity attacks. If both a one-argument and a two-arguments overload are defined for a key type, the latter is used by QHash (note that you can simply define a two-arguments version, and use a default value for the seed parameter).

Here's a partial list of the C++ and Qt types that can serve as keys in a QHash: any integer type (char, unsigned long, etc.), any pointer type, QChar, QString, and QByteArray. For all of these, the <QHash> header defines a qHash() function that computes an adequate hash value. Many other Qt classes also declare a qHash overload for their type; please refer to the documentation of each class.

If you want to use other types as the key, make sure that you provide operator==() and a qHash() implementation.

Example:

#ifndef EMPLOYEE_H #define EMPLOYEE_H

class Employee { public: Employee() {} Employee(const QString &name, const QDate &dateOfBirth); ...

private: QString myName; QDate myDateOfBirth; };

inline bool operator==(const Employee &e1, const Employee &e2) { return e1.name() == e2.name() && e1.dateOfBirth() == e2.dateOfBirth(); }

inline uint qHash(const Employee &key, uint seed) { return qHash(key.name(), seed) ^ key.dateOfBirth().day(); }

#endif // EMPLOYEE_H

In the example above, we've relied on Qt's global qHash(const QString &, uint) to give us a hash value for the employee's name, and XOR'ed this with the day they were born to help produce unique hashes for people with the same name.

Note that the implementation of the qHash() overloads offered by Qt may change at any time. You must not rely on the fact that qHash() will give the same results (for the same inputs) across different Qt versions.

Algorithmic complexity attacks

All hash tables are vulnerable to a particular class of denial of service attacks, in which the attacker carefully pre-computes a set of different keys that are going to be hashed in the same bucket of a hash table (or even have the very same hash value). The attack aims at getting the worst-case algorithmic behavior (O(n) instead of amortized O(1), see Algorithmic Complexity for the details) when the data is fed into the table.

In order to avoid this worst-case behavior, the calculation of the hash value done by qHash() can be salted by a random seed, that nullifies the attack's extent. This seed is automatically generated by QHash once per process, and then passed by QHash as the second argument of the two-arguments overload of the qHash() function.

This randomization of QHash is enabled by default. Even though programs should never depend on a particular QHash ordering, there may be situations where you temporarily need deterministic behavior, for example for debugging or regression testing. To disable the randomization, define the environment variable QT_HASH_SEED. The contents of that variable, interpreted as a decimal value, will be used as the seed for qHash(). Alternatively, you can call the qSetGlobalQHashSeed() function.

source

pub unsafe fn count_1a(&self, key: impl CastInto<Ref<QString>>) -> c_int

Returns the number of items associated with the key.

Calls C++ function: int QHash<QString, QVariant>::count(const QString& key) const.

C++ documentation:

Returns the number of items associated with the key.

See also contains() and insertMulti().

source

pub unsafe fn count_0a(&self) -> c_int

This is an overloaded function.

Calls C++ function: int QHash<QString, QVariant>::count() const.

C++ documentation:

This is an overloaded function.

Same as size().

source

pub unsafe fn detach(&self)

Calls C++ function: void QHash<QString, QVariant>::detach().

source

pub unsafe fn empty(&self) -> bool

This function is provided for STL compatibility. It is equivalent to isEmpty(), returning true if the hash is empty; otherwise returns false.

Calls C++ function: bool QHash<QString, QVariant>::empty() const.

C++ documentation:

This function is provided for STL compatibility. It is equivalent to isEmpty(), returning true if the hash is empty; otherwise returns false.

source

pub unsafe fn end_mut(&self) -> CppBox<Iterator>

Returns an STL-style iterator pointing to the imaginary item after the last item in the hash.

Calls C++ function: QHash<QString, QVariant>::iterator QHash<QString, QVariant>::end().

C++ documentation:

Returns an STL-style iterator pointing to the imaginary item after the last item in the hash.

See also begin() and constEnd().

source

pub unsafe fn end(&self) -> CppBox<ConstIterator>

This is an overloaded function.

Calls C++ function: QHash<QString, QVariant>::const_iterator QHash<QString, QVariant>::end() const.

C++ documentation:

This is an overloaded function.

source

pub unsafe fn erase_iterator( &self, it: impl CastInto<Ref<Iterator>> ) -> CppBox<Iterator>

This is an overloaded function.

Calls C++ function: QHash<QString, QVariant>::iterator QHash<QString, QVariant>::erase(QHash<QString, QVariant>::iterator it).

C++ documentation:

This is an overloaded function.

source

pub unsafe fn erase_const_iterator( &self, it: impl CastInto<Ref<ConstIterator>> ) -> CppBox<Iterator>

Removes the (key, value) pair associated with the iterator pos from the hash, and returns an iterator to the next item in the hash.

Calls C++ function: QHash<QString, QVariant>::iterator QHash<QString, QVariant>::erase(QHash<QString, QVariant>::const_iterator it).

C++ documentation:

Removes the (key, value) pair associated with the iterator pos from the hash, and returns an iterator to the next item in the hash.

Unlike remove() and take(), this function never causes QHash to rehash its internal data structure. This means that it can safely be called while iterating, and won't affect the order of items in the hash. For example:

QHash<QObject , int> objectHash; ... QHash<QObject , int>::iterator i = objectHash.find(obj); while (i != objectHash.end() && i.key() == obj) { if (i.value() == 0) { i = objectHash.erase(i); } else { ++i; } }

This function was introduced in Qt 5.7.

See also remove(), take(), and find().

source

pub unsafe fn find_mut( &self, key: impl CastInto<Ref<QString>> ) -> CppBox<Iterator>

Returns an iterator pointing to the item with the key in the hash.

Calls C++ function: QHash<QString, QVariant>::iterator QHash<QString, QVariant>::find(const QString& key).

C++ documentation:

Returns an iterator pointing to the item with the key in the hash.

If the hash contains no item with the key, the function returns end().

If the hash contains multiple items with the key, this function returns an iterator that points to the most recently inserted value. The other values are accessible by incrementing the iterator. For example, here's some code that iterates over all the items with the same key:

QHash<QString, int> hash; ... QHash<QString, int>::const_iterator i = hash.find(“HDR”); while (i != hash.end() && i.key() == “HDR”) { cout << i.value() << endl; ++i; }

See also value(), values(), and QMultiHash::find().

source

pub unsafe fn find( &self, key: impl CastInto<Ref<QString>> ) -> CppBox<ConstIterator>

This is an overloaded function.

Calls C++ function: QHash<QString, QVariant>::const_iterator QHash<QString, QVariant>::find(const QString& key) const.

C++ documentation:

This is an overloaded function.

source

pub unsafe fn index_mut( &self, key: impl CastInto<Ref<QString>> ) -> Ref<QVariant>

Returns the value associated with the key as a modifiable reference.

Calls C++ function: QVariant& QHash<QString, QVariant>::operator[](const QString& key).

C++ documentation:

Returns the value associated with the key as a modifiable reference.

If the hash contains no item with the key, the function inserts a default-constructed value into the hash with the key, and returns a reference to it. If the hash contains multiple items with the key, this function returns a reference to the most recently inserted value.

See also insert() and value().

source

pub unsafe fn index(&self, key: impl CastInto<Ref<QString>>) -> CppBox<QVariant>

This is an overloaded function.

Calls C++ function: QVariant QHash<QString, QVariant>::operator[](const QString& key) const.

C++ documentation:

This is an overloaded function.

Same as value().

source

pub unsafe fn insert( &self, key: impl CastInto<Ref<QString>>, value: impl CastInto<Ref<QVariant>> ) -> CppBox<Iterator>

Inserts a new item with the key and a value of value.

Calls C++ function: QHash<QString, QVariant>::iterator QHash<QString, QVariant>::insert(const QString& key, const QVariant& value).

C++ documentation:

Inserts a new item with the key and a value of value.

If there is already an item with the key, that item's value is replaced with value.

If there are multiple items with the key, the most recently inserted item's value is replaced with value.

See also insertMulti().

source

pub unsafe fn insert_multi( &self, key: impl CastInto<Ref<QString>>, value: impl CastInto<Ref<QVariant>> ) -> CppBox<Iterator>

Inserts a new item with the key and a value of value.

Calls C++ function: QHash<QString, QVariant>::iterator QHash<QString, QVariant>::insertMulti(const QString& key, const QVariant& value).

C++ documentation:

Inserts a new item with the key and a value of value.

If there is already an item with the same key in the hash, this function will simply create a new one. (This behavior is different from insert(), which overwrites the value of an existing item.)

See also insert() and values().

source

pub unsafe fn is_detached(&self) -> bool

Calls C++ function: bool QHash<QString, QVariant>::isDetached() const.

source

pub unsafe fn is_empty(&self) -> bool

Returns true if the hash contains no items; otherwise returns false.

Calls C++ function: bool QHash<QString, QVariant>::isEmpty() const.

C++ documentation:

Returns true if the hash contains no items; otherwise returns false.

See also size().

source

pub unsafe fn key_1a( &self, value: impl CastInto<Ref<QVariant>> ) -> CppBox<QString>

Returns the first key mapped to value.

Calls C++ function: QString QHash<QString, QVariant>::key(const QVariant& value) const.

C++ documentation:

Returns the first key mapped to value.

If the hash contains no item with the value, the function returns a default-constructed key.

This function can be slow (linear time), because QHash's internal data structure is optimized for fast lookup by key, not by value.

See also value() and keys().

source

pub unsafe fn key_2a( &self, value: impl CastInto<Ref<QVariant>>, default_key: impl CastInto<Ref<QString>> ) -> CppBox<QString>

This is an overloaded function.

Calls C++ function: QString QHash<QString, QVariant>::key(const QVariant& value, const QString& defaultKey) const.

C++ documentation:

This is an overloaded function.

Returns the first key mapped to value, or defaultKey if the hash contains no item mapped to value.

This function can be slow (linear time), because QHash's internal data structure is optimized for fast lookup by key, not by value.

This function was introduced in Qt 4.3.

source

pub unsafe fn key_begin(&self) -> CppBox<KeyIterator>

Returns a const STL-style iterator pointing to the first key in the hash.

Calls C++ function: QHash<QString, QVariant>::key_iterator QHash<QString, QVariant>::keyBegin() const.

C++ documentation:

Returns a const STL-style iterator pointing to the first key in the hash.

This function was introduced in Qt 5.6.

See also keyEnd().

source

pub unsafe fn key_end(&self) -> CppBox<KeyIterator>

Returns a const STL-style iterator pointing to the imaginary item after the last key in the hash.

Calls C++ function: QHash<QString, QVariant>::key_iterator QHash<QString, QVariant>::keyEnd() const.

C++ documentation:

Returns a const STL-style iterator pointing to the imaginary item after the last key in the hash.

This function was introduced in Qt 5.6.

See also keyBegin().

source

pub unsafe fn keys_0a(&self) -> CppBox<QListOfQString>

Returns a list containing all the keys in the hash, in an arbitrary order. Keys that occur multiple times in the hash (because items were inserted with insertMulti(), or unite() was used) also occur multiple times in the list.

Calls C++ function: QList<QString> QHash<QString, QVariant>::keys() const.

C++ documentation:

Returns a list containing all the keys in the hash, in an arbitrary order. Keys that occur multiple times in the hash (because items were inserted with insertMulti(), or unite() was used) also occur multiple times in the list.

To obtain a list of unique keys, where each key from the map only occurs once, use uniqueKeys().

The order is guaranteed to be the same as that used by values().

See also uniqueKeys(), values(), and key().

source

pub unsafe fn keys_1a( &self, value: impl CastInto<Ref<QVariant>> ) -> CppBox<QListOfQString>

This is an overloaded function.

Calls C++ function: QList<QString> QHash<QString, QVariant>::keys(const QVariant& value) const.

C++ documentation:

This is an overloaded function.

Returns a list containing all the keys associated with value value, in an arbitrary order.

This function can be slow (linear time), because QHash's internal data structure is optimized for fast lookup by key, not by value.

source

pub unsafe fn new() -> CppBox<QHashOfQStringQVariant>

Constructs an empty hash.

Calls C++ function: [constructor] void QHash<QString, QVariant>::QHash().

C++ documentation:

Constructs an empty hash.

See also clear().

source

pub unsafe fn new_copy( other: impl CastInto<Ref<QHashOfQStringQVariant>> ) -> CppBox<QHashOfQStringQVariant>

The QHash class is a template class that provides a hash-table-based dictionary.

Calls C++ function: [constructor] void QHash<QString, QVariant>::QHash(const QHash<QString, QVariant>& other).

C++ documentation:

The QHash class is a template class that provides a hash-table-based dictionary.

QHash<Key, T> is one of Qt's generic container classes. It stores (key, value) pairs and provides very fast lookup of the value associated with a key.

QHash provides very similar functionality to QMap. The differences are:

  • QHash provides faster lookups than QMap. (See Algorithmic Complexity for details.)
  • When iterating over a QMap, the items are always sorted by key. With QHash, the items are arbitrarily ordered.
  • The key type of a QMap must provide operator<(). The key type of a QHash must provide operator==() and a global hash function called qHash() (see qHash).

Here's an example QHash with QString keys and int values:

QHash<QString, int> hash;

To insert a (key, value) pair into the hash, you can use operator[]():

hash[“one”] = 1; hash[“three”] = 3; hash[“seven”] = 7;

This inserts the following three (key, value) pairs into the QHash: ("one", 1), ("three", 3), and ("seven", 7). Another way to insert items into the hash is to use insert():

hash.insert(“twelve”, 12);

To look up a value, use operator[]() or value():

int num1 = hash[“thirteen”]; int num2 = hash.value(“thirteen”);

If there is no item with the specified key in the hash, these functions return a default-constructed value.

If you want to check whether the hash contains a particular key, use contains():

int timeout = 30; if (hash.contains(“TIMEOUT”)) timeout = hash.value(“TIMEOUT”);

There is also a value() overload that uses its second argument as a default value if there is no item with the specified key:

int timeout = hash.value(“TIMEOUT”, 30);

In general, we recommend that you use contains() and value() rather than operator[]() for looking up a key in a hash. The reason is that operator[]() silently inserts an item into the hash if no item exists with the same key (unless the hash is const). For example, the following code snippet will create 1000 items in memory:

// WRONG QHash<int, QWidget *> hash; ... for (int i = 0; i < 1000; ++i) { if (hash[i] == okButton) cout << “Found button at index “ << i << endl; }

To avoid this problem, replace hash[i] with hash.value(i) in the code above.

Internally, QHash uses a hash table to perform lookups. Unlike Qt 3's QDict class, which needed to be initialized with a prime number, QHash's hash table automatically grows and shrinks to provide fast lookups without wasting too much memory. You can still control the size of the hash table by calling reserve() if you already know approximately how many items the QHash will contain, but this isn't necessary to obtain good performance. You can also call capacity() to retrieve the hash table's size.

If you want to navigate through all the (key, value) pairs stored in a QHash, you can use an iterator. QHash provides both Java-style iterators (QHashIterator and QMutableHashIterator) and STL-style iterators (QHash::const_iterator and QHash::iterator). Here's how to iterate over a QHash<QString, int> using a Java-style iterator:

QHashIterator<QString, int> i(hash); while (i.hasNext()) { i.next(); cout << i.key() << “: “ << i.value() << endl; }

Here's the same code, but using an STL-style iterator:

QHash<QString, int>::const_iterator i = hash.constBegin(); while (i != hash.constEnd()) { cout << i.key() << “: “ << i.value() << endl; ++i; }

QHash is unordered, so an iterator's sequence cannot be assumed to be predictable. If ordering by key is required, use a QMap.

Normally, a QHash allows only one value per key. If you call insert() with a key that already exists in the QHash, the previous value is erased. For example:

hash.insert(“plenty”, 100); hash.insert(“plenty”, 2000); // hash.value(“plenty”) == 2000

However, you can store multiple values per key by using insertMulti() instead of insert() (or using the convenience subclass QMultiHash). If you want to retrieve all the values for a single key, you can use values(const Key &key), which returns a QList<T>:

QList<int> values = hash.values(“plenty”); for (int i = 0; i < values.size(); ++i) cout << values.at(i) << endl;

The items that share the same key are available from most recently to least recently inserted. A more efficient approach is to call find() to get the iterator for the first item with a key and iterate from there:

QHash<QString, int>::iterator i = hash.find(“plenty”); while (i != hash.end() && i.key() == “plenty”) { cout << i.value() << endl; ++i; }

If you only need to extract the values from a hash (not the keys), you can also use foreach:

QHash<QString, int> hash; ... foreach (int value, hash) cout << value << endl;

Items can be removed from the hash in several ways. One way is to call remove(); this will remove any item with the given key. Another way is to use QMutableHashIterator::remove(). In addition, you can clear the entire hash using clear().

QHash's key and value data types must be assignable data types. You cannot, for example, store a QWidget as a value; instead, store a QWidget *.

The qHash() hashing function

A QHash's key type has additional requirements other than being an assignable data type: it must provide operator==(), and there must also be a qHash() function in the type's namespace that returns a hash value for an argument of the key's type.

The qHash() function computes a numeric value based on a key. It can use any algorithm imaginable, as long as it always returns the same value if given the same argument. In other words, if e1 == e2, then qHash(e1) == qHash(e2) must hold as well. However, to obtain good performance, the qHash() function should attempt to return different hash values for different keys to the largest extent possible.

For a key type K, the qHash function must have one of these signatures:

uint qHash(K key); uint qHash(const K &key);

uint qHash(K key, uint seed); uint qHash(const K &key, uint seed);

The two-arguments overloads take an unsigned integer that should be used to seed the calculation of the hash function. This seed is provided by QHash in order to prevent a family of algorithmic complexity attacks. If both a one-argument and a two-arguments overload are defined for a key type, the latter is used by QHash (note that you can simply define a two-arguments version, and use a default value for the seed parameter).

Here's a partial list of the C++ and Qt types that can serve as keys in a QHash: any integer type (char, unsigned long, etc.), any pointer type, QChar, QString, and QByteArray. For all of these, the <QHash> header defines a qHash() function that computes an adequate hash value. Many other Qt classes also declare a qHash overload for their type; please refer to the documentation of each class.

If you want to use other types as the key, make sure that you provide operator==() and a qHash() implementation.

Example:

#ifndef EMPLOYEE_H #define EMPLOYEE_H

class Employee { public: Employee() {} Employee(const QString &name, const QDate &dateOfBirth); ...

private: QString myName; QDate myDateOfBirth; };

inline bool operator==(const Employee &e1, const Employee &e2) { return e1.name() == e2.name() && e1.dateOfBirth() == e2.dateOfBirth(); }

inline uint qHash(const Employee &key, uint seed) { return qHash(key.name(), seed) ^ key.dateOfBirth().day(); }

#endif // EMPLOYEE_H

In the example above, we've relied on Qt's global qHash(const QString &, uint) to give us a hash value for the employee's name, and XOR'ed this with the day they were born to help produce unique hashes for people with the same name.

Note that the implementation of the qHash() overloads offered by Qt may change at any time. You must not rely on the fact that qHash() will give the same results (for the same inputs) across different Qt versions.

Algorithmic complexity attacks

All hash tables are vulnerable to a particular class of denial of service attacks, in which the attacker carefully pre-computes a set of different keys that are going to be hashed in the same bucket of a hash table (or even have the very same hash value). The attack aims at getting the worst-case algorithmic behavior (O(n) instead of amortized O(1), see Algorithmic Complexity for the details) when the data is fed into the table.

In order to avoid this worst-case behavior, the calculation of the hash value done by qHash() can be salted by a random seed, that nullifies the attack's extent. This seed is automatically generated by QHash once per process, and then passed by QHash as the second argument of the two-arguments overload of the qHash() function.

This randomization of QHash is enabled by default. Even though programs should never depend on a particular QHash ordering, there may be situations where you temporarily need deterministic behavior, for example for debugging or regression testing. To disable the randomization, define the environment variable QT_HASH_SEED. The contents of that variable, interpreted as a decimal value, will be used as the seed for qHash(). Alternatively, you can call the qSetGlobalQHashSeed() function.

source

pub unsafe fn remove(&self, key: impl CastInto<Ref<QString>>) -> c_int

Removes all the items that have the key from the hash. Returns the number of items removed which is usually 1 but will be 0 if the key isn't in the hash, or greater than 1 if insertMulti() has been used with the key.

Calls C++ function: int QHash<QString, QVariant>::remove(const QString& key).

C++ documentation:

Removes all the items that have the key from the hash. Returns the number of items removed which is usually 1 but will be 0 if the key isn’t in the hash, or greater than 1 if insertMulti() has been used with the key.

See also clear(), take(), and QMultiHash::remove().

source

pub unsafe fn reserve(&self, size: c_int)

Ensures that the QHash's internal hash table consists of at least size buckets.

Calls C++ function: void QHash<QString, QVariant>::reserve(int size).

C++ documentation:

Ensures that the QHash’s internal hash table consists of at least size buckets.

This function is useful for code that needs to build a huge hash and wants to avoid repeated reallocation. For example:

QHash<QString, int> hash; hash.reserve(20000); for (int i = 0; i < 20000; ++i) hash.insert(keys[i], values[i]);

Ideally, size should be slightly more than the maximum number of items expected in the hash. size doesn't have to be prime, because QHash will use a prime number internally anyway. If size is an underestimate, the worst that will happen is that the QHash will be a bit slower.

In general, you will rarely ever need to call this function. QHash's internal hash table automatically shrinks or grows to provide good performance without wasting too much memory.

See also squeeze() and capacity().

source

pub unsafe fn set_sharable(&self, sharable: bool)

Calls C++ function: void QHash<QString, QVariant>::setSharable(bool sharable).

source

pub unsafe fn size(&self) -> c_int

Returns the number of items in the hash.

Calls C++ function: int QHash<QString, QVariant>::size() const.

C++ documentation:

Returns the number of items in the hash.

See also isEmpty() and count().

source

pub unsafe fn squeeze(&self)

Reduces the size of the QHash's internal hash table to save memory.

Calls C++ function: void QHash<QString, QVariant>::squeeze().

C++ documentation:

Reduces the size of the QHash’s internal hash table to save memory.

The sole purpose of this function is to provide a means of fine tuning QHash's memory usage. In general, you will rarely ever need to call this function.

See also reserve() and capacity().

source

pub unsafe fn take(&self, key: impl CastInto<Ref<QString>>) -> CppBox<QVariant>

Removes the item with the key from the hash and returns the value associated with it.

Calls C++ function: QVariant QHash<QString, QVariant>::take(const QString& key).

C++ documentation:

Removes the item with the key from the hash and returns the value associated with it.

If the item does not exist in the hash, the function simply returns a default-constructed value. If there are multiple items for key in the hash, only the most recently inserted one is removed.

If you don't use the return value, remove() is more efficient.

See also remove().

source

pub unsafe fn unique_keys(&self) -> CppBox<QListOfQString>

Returns a list containing all the keys in the map. Keys that occur multiple times in the map (because items were inserted with insertMulti(), or unite() was used) occur only once in the returned list.

Calls C++ function: QList<QString> QHash<QString, QVariant>::uniqueKeys() const.

C++ documentation:

Returns a list containing all the keys in the map. Keys that occur multiple times in the map (because items were inserted with insertMulti(), or unite() was used) occur only once in the returned list.

This function was introduced in Qt 4.2.

See also keys() and values().

source

pub unsafe fn value_1a( &self, key: impl CastInto<Ref<QString>> ) -> CppBox<QVariant>

Returns the value associated with the key.

Calls C++ function: QVariant QHash<QString, QVariant>::value(const QString& key) const.

C++ documentation:

Returns the value associated with the key.

If the hash contains no item with the key, the function returns a default-constructed value. If there are multiple items for the key in the hash, the value of the most recently inserted one is returned.

See also key(), values(), contains(), and operator[]().

source

pub unsafe fn value_2a( &self, key: impl CastInto<Ref<QString>>, default_value: impl CastInto<Ref<QVariant>> ) -> CppBox<QVariant>

This is an overloaded function.

Calls C++ function: QVariant QHash<QString, QVariant>::value(const QString& key, const QVariant& defaultValue) const.

C++ documentation:

This is an overloaded function.

If the hash contains no item with the given key, the function returns defaultValue.

source

pub unsafe fn values_0a(&self) -> CppBox<QListOfQVariant>

Returns a list containing all the values in the hash, in an arbitrary order. If a key is associated with multiple values, all of its values will be in the list, and not just the most recently inserted one.

Calls C++ function: QList<QVariant> QHash<QString, QVariant>::values() const.

C++ documentation:

Returns a list containing all the values in the hash, in an arbitrary order. If a key is associated with multiple values, all of its values will be in the list, and not just the most recently inserted one.

The order is guaranteed to be the same as that used by keys().

See also keys() and value().

source

pub unsafe fn values_1a( &self, key: impl CastInto<Ref<QString>> ) -> CppBox<QListOfQVariant>

This is an overloaded function.

Calls C++ function: QList<QVariant> QHash<QString, QVariant>::values(const QString& key) const.

C++ documentation:

This is an overloaded function.

Returns a list of all the values associated with the key, from the most recently inserted to the least recently inserted.

See also count() and insertMulti().

Trait Implementations§

source§

impl Begin for QHashOfQStringQVariant

source§

unsafe fn begin(&self) -> CppBox<ConstIterator>

This is an overloaded function.

Calls C++ function: QHash<QString, QVariant>::const_iterator QHash<QString, QVariant>::begin() const.

C++ documentation:

This is an overloaded function.

§

type Output = CppBox<ConstIterator>

Output type.
source§

impl BeginMut for QHashOfQStringQVariant

source§

unsafe fn begin_mut(&self) -> CppBox<Iterator>

Returns an STL-style iterator pointing to the first item in the hash.

Calls C++ function: QHash<QString, QVariant>::iterator QHash<QString, QVariant>::begin().

C++ documentation:

Returns an STL-style iterator pointing to the first item in the hash.

See also constBegin() and end().

§

type Output = CppBox<Iterator>

Output type.
source§

impl CppDeletable for QHashOfQStringQVariant

source§

unsafe fn delete(&self)

Destroys the hash. References to the values in the hash and all iterators of this hash become invalid.

Calls C++ function: [destructor] void QHash<QString, QVariant>::~QHash().

C++ documentation:

Destroys the hash. References to the values in the hash and all iterators of this hash become invalid.

source§

impl End for QHashOfQStringQVariant

source§

unsafe fn end(&self) -> CppBox<ConstIterator>

This is an overloaded function.

Calls C++ function: QHash<QString, QVariant>::const_iterator QHash<QString, QVariant>::end() const.

C++ documentation:

This is an overloaded function.

§

type Output = CppBox<ConstIterator>

Output type.
source§

impl EndMut for QHashOfQStringQVariant

source§

unsafe fn end_mut(&self) -> CppBox<Iterator>

Returns an STL-style iterator pointing to the imaginary item after the last item in the hash.

Calls C++ function: QHash<QString, QVariant>::iterator QHash<QString, QVariant>::end().

C++ documentation:

Returns an STL-style iterator pointing to the imaginary item after the last item in the hash.

See also begin() and constEnd().

§

type Output = CppBox<Iterator>

Output type.
source§

impl Size for QHashOfQStringQVariant

source§

unsafe fn size(&self) -> usize

Returns the number of items in the hash.

Calls C++ function: int QHash<QString, QVariant>::size() const.

C++ documentation:

Returns the number of items in the hash.

See also isEmpty() and count().

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T, U> CastInto<U> for T
where U: CastFrom<T>,

source§

unsafe fn cast_into(self) -> U

Performs the conversion. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> StaticUpcast<T> for T

source§

unsafe fn static_upcast(ptr: Ptr<T>) -> Ptr<T>

Convert type of a const pointer. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.