diff --git a/doc/base/classes.xml b/doc/base/classes.xml index c789fc35ee9..9798aff0ac0 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -3766,6 +3766,7 @@ + Append an element at the end of the array (alias of [method push_back]). @@ -3784,6 +3785,7 @@ + Remove the first occurence of a value from the array. @@ -3792,6 +3794,7 @@ + Searches the array for a value and returns its index or -1 if not found. @@ -3812,12 +3815,14 @@ + Reverse the order of the elements in the array (so first element will now be the last). + Get whether this is a shared array instance. @@ -3850,6 +3855,7 @@ + Sort the array using natural order. @@ -3858,6 +3864,7 @@ + Sort the array using a custom method. The arguments are an object that holds the method and the name of such method. The custom method receives two arguments (a pair of elements from the array) and must return true if the first argument is less than the second, and return false otherwise.