Skip to content

Commit 5cfc33e

Browse files
committed
Add new FixedVector type to the types table.
1 parent de6a37a commit 5cfc33e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

contributing/development/cpp_usage_guidelines.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ scripting API.
8686
| ``List`` | ``std::list`` | Linked list type. Generally slower than other array/vector types. Prefer using |
8787
| | | other types in new code, unless using ``List`` avoids the need for type conversions. |
8888
+------------------------+--------------------------+---------------------------------------------------------------------------------------+
89+
| ``FixedVector`` | ``std::array`` | Vector with a fixed capacity (more similar to ``boost::container::static_vector``). |
90+
+------------------------+--------------------------+---------------------------------------------------------------------------------------+
8991
| ``Span`` | ``std::span`` | Represents read-only access to a contiguous array without needing to copy any data. |
9092
| | | See `pull request description <https://github.com/godotengine/godot/pull/100293>`__ |
9193
| | | for details. |

0 commit comments

Comments
 (0)