summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGeorge Marques <george@gmarqu.es>2016-06-10 18:07:59 -0300
committerGeorge Marques <george@gmarqu.es>2016-06-10 18:07:59 -0300
commit6ce5876c63ffd7bc21b38197c4fa89713a77ceb5 (patch)
tree359747451ac186ecd81a98cbf509945fcd594d0d /doc
parent46b6bb9dc49a7b187a7bf6e19e5da732a5656e19 (diff)
Add documentation for Array.find and Array.rfind
Diffstat (limited to 'doc')
-rw-r--r--doc/base/classes.xml15
1 files changed, 13 insertions, 2 deletions
diff --git a/doc/base/classes.xml b/doc/base/classes.xml
index b74ac1c144..b72f082afa 100644
--- a/doc/base/classes.xml
+++ b/doc/base/classes.xml
@@ -4390,10 +4390,12 @@
<method name="find">
<return type="int">
</return>
- <argument index="0" name="value" type="var">
+ <argument index="0" name="what" type="var">
+ </argument>
+ <argument index="1" name="from" type="int" default="0">
</argument>
<description>
- Searches the array for a value and returns its index or -1 if not found.
+ Searches the array for a value and returns its index or -1 if not found. Optionally, the initial search index can be passed.
</description>
</method>
<method name="find_last">
@@ -4471,6 +4473,15 @@
Resize the array to contain a different number of elements. If the array size is smaller, elements are cleared, if bigger, new elements are Null.
</description>
</method>
+ <method name="rfind">
+ <argument index="0" name="what" type="var">
+ </argument>
+ <argument index="1" name="from" type="int">
+ </argument>
+ <description>
+ Searches the array in reverse order. Optionally, a start search index can be passed. If negative, the start index is considered relative to the end of the array.
+ </description>
+ </method>
<method name="size">
<return type="int">
</return>