Files
godot/doc/classes
reduz 8b7c7f5a75 Add a new HashMap implementation
Adds a new, cleaned up, HashMap implementation.

* Uses Robin Hood Hashing (https://en.wikipedia.org/wiki/Hash_table#Robin_Hood_hashing).
* Keeps elements in a double linked list for simpler, ordered, iteration.
* Allows keeping iterators for later use in removal (Unlike Map<>, it does not do much
  for performance vs keeping the key, but helps replace old code).
* Uses a more modern C++ iterator API, deprecates the old one.
* Supports custom allocator (in case there is a wish to use a paged one).

This class aims to unify all the associative template usage and replace it by this one:
* Map<> (whereas key order does not matter, which is 99% of cases)
* HashMap<>
* OrderedHashMap<>
* OAHashMap<>
2022-05-12 11:21:29 +02:00
..
2022-02-15 00:03:31 +01:00
2022-02-15 00:03:31 +01:00
2022-04-28 00:22:43 -07:00
2022-04-28 00:22:43 -07:00
2022-04-28 00:22:43 -07:00
2022-02-15 00:03:31 +01:00
2022-02-15 00:03:31 +01:00
2022-02-15 00:03:31 +01:00
2022-04-27 01:02:11 +02:00
2022-03-27 16:13:00 +02:00
2022-03-22 16:27:34 +01:00
2022-03-31 14:07:29 +02:00
2022-04-22 12:08:46 +03:00
2022-04-28 00:22:43 -07:00
2022-04-28 00:22:43 -07:00
2022-05-06 13:09:04 +05:30
2022-02-15 00:03:31 +01:00
2022-04-22 12:08:46 +03:00
2022-05-12 11:21:29 +02:00
2022-04-22 12:08:46 +03:00
2022-04-22 12:08:46 +03:00
2022-04-28 00:22:43 -07:00
2022-02-15 00:03:31 +01:00
2022-02-15 00:03:31 +01:00
2022-02-15 00:03:31 +01:00
2022-05-03 17:27:17 -07:00
2022-02-15 00:03:31 +01:00
2022-04-28 00:22:43 -07:00
2022-02-15 00:03:31 +01:00
2022-02-15 00:03:31 +01:00
2022-02-25 09:33:27 +02:00
2022-05-10 19:34:48 +08:00
2022-03-27 16:13:00 +02:00
2022-02-15 00:03:31 +01:00
2022-04-28 00:22:43 -07:00
2022-02-15 00:03:31 +01:00
2022-04-18 02:11:19 +09:00
2022-02-15 00:03:31 +01:00
2022-04-28 00:22:43 -07:00
2022-03-31 14:20:37 -04:00
2022-04-28 00:22:43 -07:00
2022-04-22 12:08:46 +03:00
2022-02-15 00:03:31 +01:00
2022-02-15 00:03:31 +01:00
2022-04-16 00:21:05 +08:00
2022-05-05 16:00:37 +02:00
2022-04-22 12:08:46 +03:00
2022-04-28 21:19:01 +08:00
2022-04-28 21:19:01 +08:00
2022-03-09 13:59:03 +01:00
2022-04-28 00:22:43 -07:00
2022-04-12 19:09:29 +02:00
2022-04-28 00:22:43 -07:00
2022-02-23 12:02:24 +01:00
2022-03-09 13:59:03 +01:00
2022-02-15 00:03:31 +01:00