godot/core/object
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
..
callable_method_pointer.cpp Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
callable_method_pointer.h Zero initialize all pointer class and struct members 2022-04-04 19:49:50 +02:00
class_db.cpp Add a new HashMap implementation 2022-05-12 11:21:29 +02:00
class_db.h Change D_METHOD to variadic template 2022-04-30 17:30:33 +02:00
make_virtuals.py Fix typos with codespell 2022-03-31 14:07:29 +02:00
message_queue.cpp Remove VARIANT_ARG* macros 2022-03-09 18:39:13 +01:00
message_queue.h Zero initialize all pointer class and struct members 2022-04-04 19:49:50 +02:00
method_bind.cpp Remove argument name strings from release builds 2022-04-05 20:40:07 -03:00
method_bind.h Fix more issues found by cppcheck. 2022-04-20 10:34:00 +03:00
object_id.h Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
object.cpp Add a new HashMap implementation 2022-05-12 11:21:29 +02:00
object.h Add a new HashMap implementation 2022-05-12 11:21:29 +02:00
ref_counted.cpp Remove RES and REF typedefs in favor of spelled out Ref<> 2022-05-03 01:43:50 +02:00
ref_counted.h Remove RES and REF typedefs in favor of spelled out Ref<> 2022-05-03 01:43:50 +02:00
script_language_extension.cpp Improve sorting of Code Completion options. 2022-04-01 20:39:09 +10:00
script_language_extension.h Improve sorting of Code Completion options. 2022-04-01 20:39:09 +10:00
script_language.cpp Add a new HashMap implementation 2022-05-12 11:21:29 +02:00
script_language.h Remove RES and REF typedefs in favor of spelled out Ref<> 2022-05-03 01:43:50 +02:00
SCsub Implement native extension system 2021-06-25 17:32:45 -03:00
undo_redo.cpp Make vararg method bind no return and return 2022-03-30 11:43:12 +02:00
undo_redo.h Make vararg method bind no return and return 2022-03-30 11:43:12 +02:00