Sync classref with current source

This commit is contained in:
Rémi Verschelde
2019-10-29 12:48:46 +01:00
parent bbc6682099
commit a72184300f
449 changed files with 14004 additions and 232 deletions

View File

@@ -57,54 +57,72 @@ Method Descriptions
Constructs a new ``PoolColorArray``. Optionally, you can pass in a generic :ref:`Array<class_Array>` that will be converted.
----
.. _class_PoolColorArray_method_append:
- void **append** **(** :ref:`Color<class_Color>` color **)**
Appends an element at the end of the array (alias of :ref:`push_back<class_PoolColorArray_method_push_back>`).
----
.. _class_PoolColorArray_method_append_array:
- void **append_array** **(** :ref:`PoolColorArray<class_PoolColorArray>` array **)**
Appends a ``PoolColorArray`` at the end of this array.
----
.. _class_PoolColorArray_method_insert:
- :ref:`int<class_int>` **insert** **(** :ref:`int<class_int>` idx, :ref:`Color<class_Color>` color **)**
Inserts a new element at a given position in the array. The position must be valid, or at the end of the array (``idx == size()``).
----
.. _class_PoolColorArray_method_invert:
- void **invert** **(** **)**
Reverses the order of the elements in the array.
----
.. _class_PoolColorArray_method_push_back:
- void **push_back** **(** :ref:`Color<class_Color>` color **)**
Appends a value to the array.
----
.. _class_PoolColorArray_method_remove:
- void **remove** **(** :ref:`int<class_int>` idx **)**
Removes an element from the array by index.
----
.. _class_PoolColorArray_method_resize:
- void **resize** **(** :ref:`int<class_int>` idx **)**
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size.
----
.. _class_PoolColorArray_method_set:
- void **set** **(** :ref:`int<class_int>` idx, :ref:`Color<class_Color>` color **)**
Changes the :ref:`Color<class_Color>` at the given index.
----
.. _class_PoolColorArray_method_size:
- :ref:`int<class_int>` **size** **(** **)**