mirror of
https://github.com/godotengine/godot-docs.git
synced 2026-01-03 05:48:42 +03:00
classref: Fix links case and sync headers with editor
Output from godotengine/godot#22002.
This commit is contained in:
@@ -14,29 +14,29 @@ Brief Description
|
||||
|
||||
String Array.
|
||||
|
||||
Member Functions
|
||||
----------------
|
||||
Methods
|
||||
-------
|
||||
|
||||
+------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------+
|
||||
| :ref:`PoolStringArray<class_poolstringarray>` | :ref:`PoolStringArray<class_PoolStringArray_PoolStringArray>` **(** :ref:`Array<class_array>` from **)** |
|
||||
| :ref:`PoolStringArray<class_PoolStringArray>` | :ref:`PoolStringArray<class_PoolStringArray_PoolStringArray>` **(** :ref:`Array<class_Array>` from **)** |
|
||||
+------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------+
|
||||
| void | :ref:`append<class_PoolStringArray_append>` **(** :ref:`String<class_string>` string **)** |
|
||||
| void | :ref:`append<class_PoolStringArray_append>` **(** :ref:`String<class_String>` string **)** |
|
||||
+------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------+
|
||||
| void | :ref:`append_array<class_PoolStringArray_append_array>` **(** :ref:`PoolStringArray<class_poolstringarray>` array **)** |
|
||||
| void | :ref:`append_array<class_PoolStringArray_append_array>` **(** :ref:`PoolStringArray<class_PoolStringArray>` array **)** |
|
||||
+------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------+
|
||||
| :ref:`int<class_int>` | :ref:`insert<class_PoolStringArray_insert>` **(** :ref:`int<class_int>` idx, :ref:`String<class_string>` string **)** |
|
||||
| :ref:`int<class_int>` | :ref:`insert<class_PoolStringArray_insert>` **(** :ref:`int<class_int>` idx, :ref:`String<class_String>` string **)** |
|
||||
+------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------+
|
||||
| void | :ref:`invert<class_PoolStringArray_invert>` **(** **)** |
|
||||
+------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------+
|
||||
| :ref:`String<class_string>` | :ref:`join<class_PoolStringArray_join>` **(** :ref:`String<class_string>` delimiter **)** |
|
||||
| :ref:`String<class_String>` | :ref:`join<class_PoolStringArray_join>` **(** :ref:`String<class_String>` delimiter **)** |
|
||||
+------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------+
|
||||
| void | :ref:`push_back<class_PoolStringArray_push_back>` **(** :ref:`String<class_string>` string **)** |
|
||||
| void | :ref:`push_back<class_PoolStringArray_push_back>` **(** :ref:`String<class_String>` string **)** |
|
||||
+------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------+
|
||||
| void | :ref:`remove<class_PoolStringArray_remove>` **(** :ref:`int<class_int>` idx **)** |
|
||||
+------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------+
|
||||
| void | :ref:`resize<class_PoolStringArray_resize>` **(** :ref:`int<class_int>` idx **)** |
|
||||
+------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------+
|
||||
| void | :ref:`set<class_PoolStringArray_set>` **(** :ref:`int<class_int>` idx, :ref:`String<class_string>` string **)** |
|
||||
| void | :ref:`set<class_PoolStringArray_set>` **(** :ref:`int<class_int>` idx, :ref:`String<class_String>` string **)** |
|
||||
+------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------+
|
||||
| :ref:`int<class_int>` | :ref:`size<class_PoolStringArray_size>` **(** **)** |
|
||||
+------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------+
|
||||
@@ -46,30 +46,30 @@ Description
|
||||
|
||||
String Array. Array of strings. Can only contain strings. Optimized for memory usage, can't fragment the memory. Note that this type is passed by value and not by reference.
|
||||
|
||||
Member Function Description
|
||||
---------------------------
|
||||
Method Descriptions
|
||||
-------------------
|
||||
|
||||
.. _class_PoolStringArray_PoolStringArray:
|
||||
|
||||
- :ref:`PoolStringArray<class_poolstringarray>` **PoolStringArray** **(** :ref:`Array<class_array>` from **)**
|
||||
- :ref:`PoolStringArray<class_PoolStringArray>` **PoolStringArray** **(** :ref:`Array<class_Array>` from **)**
|
||||
|
||||
Create from a generic array.
|
||||
|
||||
.. _class_PoolStringArray_append:
|
||||
|
||||
- void **append** **(** :ref:`String<class_string>` string **)**
|
||||
- void **append** **(** :ref:`String<class_String>` string **)**
|
||||
|
||||
Append an element at the end of the array (alias of :ref:`push_back<class_PoolStringArray_push_back>`).
|
||||
|
||||
.. _class_PoolStringArray_append_array:
|
||||
|
||||
- void **append_array** **(** :ref:`PoolStringArray<class_poolstringarray>` array **)**
|
||||
- void **append_array** **(** :ref:`PoolStringArray<class_PoolStringArray>` array **)**
|
||||
|
||||
Append an StringArray at the end of this array.
|
||||
|
||||
.. _class_PoolStringArray_insert:
|
||||
|
||||
- :ref:`int<class_int>` **insert** **(** :ref:`int<class_int>` idx, :ref:`String<class_string>` string **)**
|
||||
- :ref:`int<class_int>` **insert** **(** :ref:`int<class_int>` idx, :ref:`String<class_String>` string **)**
|
||||
|
||||
Insert a new element at a given position in the array. The position must be valid, or at the end of the array (pos==size()).
|
||||
|
||||
@@ -77,17 +77,17 @@ Insert a new element at a given position in the array. The position must be vali
|
||||
|
||||
- void **invert** **(** **)**
|
||||
|
||||
Reverse the order of the elements in the array (so first element will now be the last).
|
||||
Reverse the order of the elements in the array.
|
||||
|
||||
.. _class_PoolStringArray_join:
|
||||
|
||||
- :ref:`String<class_string>` **join** **(** :ref:`String<class_string>` delimiter **)**
|
||||
- :ref:`String<class_String>` **join** **(** :ref:`String<class_String>` delimiter **)**
|
||||
|
||||
Returns a :ref:`String<class_string>` with each element of the array joined with the delimiter.
|
||||
Returns a :ref:`String<class_String>` with each element of the array joined with the delimiter.
|
||||
|
||||
.. _class_PoolStringArray_push_back:
|
||||
|
||||
- void **push_back** **(** :ref:`String<class_string>` string **)**
|
||||
- void **push_back** **(** :ref:`String<class_String>` string **)**
|
||||
|
||||
Append a string element at end of the array.
|
||||
|
||||
@@ -105,9 +105,9 @@ Set the size of the array. If the array is grown reserve elements at the end of
|
||||
|
||||
.. _class_PoolStringArray_set:
|
||||
|
||||
- void **set** **(** :ref:`int<class_int>` idx, :ref:`String<class_string>` string **)**
|
||||
- void **set** **(** :ref:`int<class_int>` idx, :ref:`String<class_String>` string **)**
|
||||
|
||||
Change the :ref:`String<class_string>` at the given index.
|
||||
Change the :ref:`String<class_String>` at the given index.
|
||||
|
||||
.. _class_PoolStringArray_size:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user