|
@@ -84,14 +84,14 @@
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="append">
|
|
<method name="append">
|
|
- <argument index="0" name="value" type="var">
|
|
|
|
|
|
+ <argument index="0" name="value" type="Variant">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
Append an element at the end of the array (alias of [method push_back]).
|
|
Append an element at the end of the array (alias of [method push_back]).
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="back">
|
|
<method name="back">
|
|
- <return type="var">
|
|
|
|
|
|
+ <return type="Variant">
|
|
</return>
|
|
</return>
|
|
<description>
|
|
<description>
|
|
Returns the last element of the array if the array is not empty (size>0).
|
|
Returns the last element of the array if the array is not empty (size>0).
|
|
@@ -100,7 +100,7 @@
|
|
<method name="bsearch">
|
|
<method name="bsearch">
|
|
<return type="int">
|
|
<return type="int">
|
|
</return>
|
|
</return>
|
|
- <argument index="0" name="value" type="var">
|
|
|
|
|
|
+ <argument index="0" name="value" type="Variant">
|
|
</argument>
|
|
</argument>
|
|
<argument index="1" name="before" type="bool" default="True">
|
|
<argument index="1" name="before" type="bool" default="True">
|
|
</argument>
|
|
</argument>
|
|
@@ -111,7 +111,7 @@
|
|
<method name="bsearch_custom">
|
|
<method name="bsearch_custom">
|
|
<return type="int">
|
|
<return type="int">
|
|
</return>
|
|
</return>
|
|
- <argument index="0" name="value" type="var">
|
|
|
|
|
|
+ <argument index="0" name="value" type="Variant">
|
|
</argument>
|
|
</argument>
|
|
<argument index="1" name="obj" type="Object">
|
|
<argument index="1" name="obj" type="Object">
|
|
</argument>
|
|
</argument>
|
|
@@ -131,7 +131,7 @@
|
|
<method name="count">
|
|
<method name="count">
|
|
<return type="int">
|
|
<return type="int">
|
|
</return>
|
|
</return>
|
|
- <argument index="0" name="value" type="var">
|
|
|
|
|
|
+ <argument index="0" name="value" type="Variant">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
Return the amount of times an element is in the array.
|
|
Return the amount of times an element is in the array.
|
|
@@ -155,7 +155,7 @@
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="erase">
|
|
<method name="erase">
|
|
- <argument index="0" name="value" type="var">
|
|
|
|
|
|
+ <argument index="0" name="value" type="Variant">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
Remove the first occurrence of a value from the array.
|
|
Remove the first occurrence of a value from the array.
|
|
@@ -164,7 +164,7 @@
|
|
<method name="find">
|
|
<method name="find">
|
|
<return type="int">
|
|
<return type="int">
|
|
</return>
|
|
</return>
|
|
- <argument index="0" name="what" type="var">
|
|
|
|
|
|
+ <argument index="0" name="what" type="Variant">
|
|
</argument>
|
|
</argument>
|
|
<argument index="1" name="from" type="int" default="0">
|
|
<argument index="1" name="from" type="int" default="0">
|
|
</argument>
|
|
</argument>
|
|
@@ -175,14 +175,14 @@
|
|
<method name="find_last">
|
|
<method name="find_last">
|
|
<return type="int">
|
|
<return type="int">
|
|
</return>
|
|
</return>
|
|
- <argument index="0" name="value" type="var">
|
|
|
|
|
|
+ <argument index="0" name="value" type="Variant">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
Searches the array in reverse order for a value and returns its index or -1 if not found.
|
|
Searches the array in reverse order for a value and returns its index or -1 if not found.
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="front">
|
|
<method name="front">
|
|
- <return type="var">
|
|
|
|
|
|
+ <return type="Variant">
|
|
</return>
|
|
</return>
|
|
<description>
|
|
<description>
|
|
Returns the first element of the array if the array is not empty (size>0).
|
|
Returns the first element of the array if the array is not empty (size>0).
|
|
@@ -191,7 +191,7 @@
|
|
<method name="has">
|
|
<method name="has">
|
|
<return type="bool">
|
|
<return type="bool">
|
|
</return>
|
|
</return>
|
|
- <argument index="0" name="value" type="var">
|
|
|
|
|
|
+ <argument index="0" name="value" type="Variant">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
Return true if the array contains given value.
|
|
Return true if the array contains given value.
|
|
@@ -213,7 +213,7 @@
|
|
<method name="insert">
|
|
<method name="insert">
|
|
<argument index="0" name="position" type="int">
|
|
<argument index="0" name="position" type="int">
|
|
</argument>
|
|
</argument>
|
|
- <argument index="1" name="value" type="var">
|
|
|
|
|
|
+ <argument index="1" name="value" type="Variant">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
Insert a new element at a given position in the array. The position must be valid, or at the end of the array ([code]pos == size()[/code]).
|
|
Insert a new element at a given position in the array. The position must be valid, or at the end of the array ([code]pos == size()[/code]).
|
|
@@ -225,42 +225,42 @@
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="max">
|
|
<method name="max">
|
|
- <return type="var">
|
|
|
|
|
|
+ <return type="Variant">
|
|
</return>
|
|
</return>
|
|
<description>
|
|
<description>
|
|
Return maximum value contained in the array if all elements are of comparable types. If the elements can't be compared, [code]null[/code] is returned.
|
|
Return maximum value contained in the array if all elements are of comparable types. If the elements can't be compared, [code]null[/code] is returned.
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="min">
|
|
<method name="min">
|
|
- <return type="var">
|
|
|
|
|
|
+ <return type="Variant">
|
|
</return>
|
|
</return>
|
|
<description>
|
|
<description>
|
|
Return minimum value contained in the array if all elements are of comparable types. If the elements can't be compared, [code]null[/code] is returned.
|
|
Return minimum value contained in the array if all elements are of comparable types. If the elements can't be compared, [code]null[/code] is returned.
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="pop_back">
|
|
<method name="pop_back">
|
|
- <return type="var">
|
|
|
|
|
|
+ <return type="Variant">
|
|
</return>
|
|
</return>
|
|
<description>
|
|
<description>
|
|
Remove the last element of the array.
|
|
Remove the last element of the array.
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="pop_front">
|
|
<method name="pop_front">
|
|
- <return type="var">
|
|
|
|
|
|
+ <return type="Variant">
|
|
</return>
|
|
</return>
|
|
<description>
|
|
<description>
|
|
Remove the first element of the array.
|
|
Remove the first element of the array.
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="push_back">
|
|
<method name="push_back">
|
|
- <argument index="0" name="value" type="var">
|
|
|
|
|
|
+ <argument index="0" name="value" type="Variant">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
Append an element at the end of the array.
|
|
Append an element at the end of the array.
|
|
</description>
|
|
</description>
|
|
</method>
|
|
</method>
|
|
<method name="push_front">
|
|
<method name="push_front">
|
|
- <argument index="0" name="value" type="var">
|
|
|
|
|
|
+ <argument index="0" name="value" type="Variant">
|
|
</argument>
|
|
</argument>
|
|
<description>
|
|
<description>
|
|
Add an element at the beginning of the array.
|
|
Add an element at the beginning of the array.
|
|
@@ -283,7 +283,7 @@
|
|
<method name="rfind">
|
|
<method name="rfind">
|
|
<return type="int">
|
|
<return type="int">
|
|
</return>
|
|
</return>
|
|
- <argument index="0" name="what" type="var">
|
|
|
|
|
|
+ <argument index="0" name="what" type="Variant">
|
|
</argument>
|
|
</argument>
|
|
<argument index="1" name="from" type="int" default="-1">
|
|
<argument index="1" name="from" type="int" default="-1">
|
|
</argument>
|
|
</argument>
|