classref: Sync with current master branch

This commit is contained in:
Rémi Verschelde
2017-11-13 09:27:07 +01:00
parent 6d0d9ebe06
commit 8c8d5c2d43
30 changed files with 565 additions and 240 deletions
+8 -8
View File
@@ -34,7 +34,7 @@ Member Functions
+----------------------------+---------------------------------------------------------------------------------------------------------------------------+
| void | :ref:`append<class_Array_append>` **(** var value **)** |
+----------------------------+---------------------------------------------------------------------------------------------------------------------------+
| void | :ref:`back<class_Array_back>` **(** **)** |
| var | :ref:`back<class_Array_back>` **(** **)** |
+----------------------------+---------------------------------------------------------------------------------------------------------------------------+
| void | :ref:`clear<class_Array_clear>` **(** **)** |
+----------------------------+---------------------------------------------------------------------------------------------------------------------------+
@@ -50,7 +50,7 @@ Member Functions
+----------------------------+---------------------------------------------------------------------------------------------------------------------------+
| :ref:`int<class_int>` | :ref:`find_last<class_Array_find_last>` **(** var value **)** |
+----------------------------+---------------------------------------------------------------------------------------------------------------------------+
| void | :ref:`front<class_Array_front>` **(** **)** |
| var | :ref:`front<class_Array_front>` **(** **)** |
+----------------------------+---------------------------------------------------------------------------------------------------------------------------+
| :ref:`bool<class_bool>` | :ref:`has<class_Array_has>` **(** var value **)** |
+----------------------------+---------------------------------------------------------------------------------------------------------------------------+
@@ -60,9 +60,9 @@ Member Functions
+----------------------------+---------------------------------------------------------------------------------------------------------------------------+
| void | :ref:`invert<class_Array_invert>` **(** **)** |
+----------------------------+---------------------------------------------------------------------------------------------------------------------------+
| void | :ref:`pop_back<class_Array_pop_back>` **(** **)** |
| var | :ref:`pop_back<class_Array_pop_back>` **(** **)** |
+----------------------------+---------------------------------------------------------------------------------------------------------------------------+
| void | :ref:`pop_front<class_Array_pop_front>` **(** **)** |
| var | :ref:`pop_front<class_Array_pop_front>` **(** **)** |
+----------------------------+---------------------------------------------------------------------------------------------------------------------------+
| void | :ref:`push_back<class_Array_push_back>` **(** var value **)** |
+----------------------------+---------------------------------------------------------------------------------------------------------------------------+
@@ -139,7 +139,7 @@ Append an element at the end of the array (alias of :ref:`push_back<class_Array_
.. _class_Array_back:
- void **back** **(** **)**
- var **back** **(** **)**
Returns the last element of the array if the array is not empty (size>0).
@@ -187,7 +187,7 @@ Searches the array in reverse order for a value and returns its index or -1 if n
.. _class_Array_front:
- void **front** **(** **)**
- var **front** **(** **)**
Returns the first element of the array if the array is not empty (size>0).
@@ -224,13 +224,13 @@ Reverse the order of the elements in the array (so first element will now be the
.. _class_Array_pop_back:
- void **pop_back** **(** **)**
- var **pop_back** **(** **)**
Remove the last element of the array.
.. _class_Array_pop_front:
- void **pop_front** **(** **)**
- var **pop_front** **(** **)**
Remove the first element of the array.