virtualx-engine/core/string
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
..
char_utils.h Cleanup and move char functions to the char_utils.h header. 2022-02-04 11:35:01 +02:00
locales.h Fix translation with multiple sources for the same language. 2022-01-24 18:58:16 +02:00
node_path.cpp Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
node_path.h Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
optimized_translation.cpp Style: Partially apply clang-tidy's cppcoreguidelines-pro-type-member-init 2022-05-02 16:28:25 +02:00
optimized_translation.h Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
print_string.cpp Fix some issues found by cppcheck. 2022-04-06 14:34:37 +03:00
print_string.h Merge pull request #60046 from Zylann/print_line_function 2022-04-11 17:51:10 +02:00
SCsub
string_buffer.h Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
string_builder.cpp Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
string_builder.h Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
string_name.cpp Implement Scene Unique Nodes 2022-04-25 12:19:17 +02:00
string_name.h Implement Scene Unique Nodes 2022-04-25 12:19:17 +02:00
translation.cpp Fix some issues found by cppcheck. 2022-04-06 14:34:37 +03:00
translation.h Fix some issues found by cppcheck. 2022-04-06 14:34:37 +03:00
translation_po.cpp Add a new HashMap implementation 2022-05-12 11:21:29 +02:00
translation_po.h Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
ucaps.h Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
ustring.cpp Fix left aligned integer sign in string formatting 2022-05-01 12:42:48 +08:00
ustring.h String: Remove TTR and DTR defines in non-tools build 2022-03-28 20:26:35 +02:00