godot/modules/gdscript
reduz 746dddc067 Replace most uses of Map by HashMap
* Map is unnecessary and inefficient in almost every case.
* Replaced by the new HashMap.
* Renamed Map to RBMap and Set to RBSet for cases that still make sense
  (order matters) but use is discouraged.

There were very few cases where replacing by HashMap was undesired because
keeping the key order was intended.
I tried to keep those (as RBMap) as much as possible, but might have missed
some. Review appreciated!
2022-05-16 10:37:48 +02:00
..
doc_classes Improve description for GDScript built-in range 2022-04-30 15:17:17 -03:00
editor Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
icons Make script type distinguishable by icon 2022-01-13 12:29:05 +01:00
language_server Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
tests Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
config.py Unregister GDScriptFunctionState class 2020-11-26 21:39:54 -03:00
gdscript_analyzer.cpp Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
gdscript_analyzer.h Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
gdscript_byte_codegen.cpp Add a new HashMap implementation 2022-05-12 11:21:29 +02:00
gdscript_byte_codegen.h Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
gdscript_cache.cpp Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
gdscript_cache.h Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
gdscript_codegen.h GDScript: Allow using self in lambdas 2022-04-24 21:49:02 -03:00
gdscript_compiler.cpp Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
gdscript_compiler.h Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
gdscript_disassembler.cpp GDScript: Allow using self in lambdas 2022-04-24 21:49:02 -03:00
gdscript_editor.cpp Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
gdscript_function.cpp Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
gdscript_function.h Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
gdscript_lambda_callable.cpp GDScript: Allow using self in lambdas 2022-04-24 21:49:02 -03:00
gdscript_lambda_callable.h GDScript: Allow using self in lambdas 2022-04-24 21:49:02 -03:00
gdscript_parser.cpp Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
gdscript_parser.h Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
gdscript_rpc_callable.cpp Remove VARIANT_ARG* macros 2022-03-09 18:39:13 +01:00
gdscript_rpc_callable.h [Net] Add type check to GDScriptRPCCallable. 2022-02-07 13:39:45 +01:00
gdscript_tokenizer.cpp Implement exponential operator (**) to GDScript/Expressions 2022-05-11 16:30:37 +03:00
gdscript_tokenizer.h Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
gdscript_utility_functions.cpp Style: Partially apply clang-tidy's cppcoreguidelines-pro-type-member-init 2022-05-02 16:28:25 +02:00
gdscript_utility_functions.h Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
gdscript_vm.cpp Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
gdscript_warning.cpp GDScript: Consolidate behavior for assigning enum types 2022-02-03 13:32:16 -03:00
gdscript_warning.h GDScript: Consolidate behavior for assigning enum types 2022-02-03 13:32:16 -03:00
gdscript.cpp Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
gdscript.h Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
register_types.cpp Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
register_types.h Refactor module initialization 2022-05-04 17:34:51 +02:00
SCsub Refactor GDScript/C# script templates logic to be editor-only 2022-03-28 16:21:00 +02:00