File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,10 @@ scripting API.
86
86
| ``List `` | ``std::list `` | Linked list type. Generally slower than other array/vector types. Prefer using |
87
87
| | | other types in new code, unless using ``List `` avoids the need for type conversions. |
88
88
+------------------------+--------------------------+---------------------------------------------------------------------------------------+
89
+ | ``FixedVector `` | ``std::array `` | Vector with a fixed capacity (more similar to ``boost::container::static_vector ``). |
90
+ | | | This container type is more efficient than other vector-like types because it makes |
91
+ | | | no heap allocations. |
92
+ +------------------------+--------------------------+---------------------------------------------------------------------------------------+
89
93
| ``Span `` | ``std::span `` | Represents read-only access to a contiguous array without needing to copy any data. |
90
94
| | | See `pull request description <https://github.com/godotengine/godot/pull/100293 >`__ |
91
95
| | | for details. |
You can’t perform that action at this time.
0 commit comments