classref: Sync with latest 4.0-alpha

This commit is contained in:
Rémi Verschelde
2022-02-22 10:06:27 +01:00
parent 2ef8d8df34
commit 19fca2678c
128 changed files with 4153 additions and 2432 deletions

View File

@@ -388,7 +388,7 @@ Returns ``true`` if the dictionary has all the keys in the given array.
- :ref:`int<class_int>` **hash** **(** **)** |const|
Returns a hashed integer value representing the dictionary contents. This can be used to compare dictionaries by value:
Returns a hashed 32-bit integer value representing the dictionary contents. This can be used to compare dictionaries by value:
.. tabs::
@@ -412,6 +412,8 @@ Returns a hashed integer value representing the dictionary contents. This can be
\ **Note:** Dictionaries with the same keys/values but in a different order will have a different hash.
\ **Note:** Dictionaries with equal content will always produce identical hash values. However, the reverse is not true. Returning identical hash values does *not* imply the dictionaries are equal, because different dictionaries can have identical hash values due to hash collisions.
----
.. _class_Dictionary_method_is_empty: