We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b5a147 commit 6db14b4Copy full SHA for 6db14b4
contributing/development/core_and_modules/core_types.rst
@@ -123,6 +123,11 @@ nor ``Vector<>`` are drop-in replacements for each other. They are two
123
unrelated types with similar interfaces, both using a buffer as their
124
storage strategy.
125
126
+``List<>`` is another Godot sequence type, using a doubly-linked list as
127
+its storage strategy. Prefer ``Vector<>`` (or ``LocalVector<>``) over
128
+``List<>`` unless you're sure you need it, as cache locality and memory
129
+fragmentation tend to be more important with small collections.
130
+
131
References:
132
~~~~~~~~~~~
133
0 commit comments