doc: Sync classref to add operators after #43419

This commit is contained in:
Rémi Verschelde
2020-11-10 14:16:20 +01:00
parent 34cad0d020
commit 64e893deac
33 changed files with 2261 additions and 131 deletions

View File

@@ -43,14 +43,14 @@
<tutorials>
</tutorials>
<methods>
<method name="Array">
<method name="Array" qualifiers="constructor">
<return type="Array">
</return>
<description>
Constructs an empty [Array].
</description>
</method>
<method name="Array">
<method name="Array" qualifiers="constructor">
<return type="Array">
</return>
<argument index="0" name="from" type="Array">
@@ -59,7 +59,7 @@
Constructs an [Array] as a copy of the given [Array].
</description>
</method>
<method name="Array">
<method name="Array" qualifiers="constructor">
<return type="Array">
</return>
<argument index="0" name="from" type="PackedByteArray">
@@ -68,7 +68,7 @@
Constructs an array from a [PackedByteArray].
</description>
</method>
<method name="Array">
<method name="Array" qualifiers="constructor">
<return type="Array">
</return>
<argument index="0" name="from" type="PackedColorArray">
@@ -77,7 +77,7 @@
Constructs an array from a [PackedColorArray].
</description>
</method>
<method name="Array">
<method name="Array" qualifiers="constructor">
<return type="Array">
</return>
<argument index="0" name="from" type="PackedFloat32Array">
@@ -86,7 +86,7 @@
Constructs an array from a [PackedFloat32Array].
</description>
</method>
<method name="Array">
<method name="Array" qualifiers="constructor">
<return type="Array">
</return>
<argument index="0" name="from" type="PackedFloat64Array">
@@ -95,7 +95,7 @@
Constructs an array from a [PackedFloat64Array].
</description>
</method>
<method name="Array">
<method name="Array" qualifiers="constructor">
<return type="Array">
</return>
<argument index="0" name="from" type="PackedInt32Array">
@@ -104,7 +104,7 @@
Constructs an array from a [PackedInt32Array].
</description>
</method>
<method name="Array">
<method name="Array" qualifiers="constructor">
<return type="Array">
</return>
<argument index="0" name="from" type="PackedInt64Array">
@@ -113,7 +113,7 @@
Constructs an array from a [PackedInt64Array].
</description>
</method>
<method name="Array">
<method name="Array" qualifiers="constructor">
<return type="Array">
</return>
<argument index="0" name="from" type="PackedStringArray">
@@ -122,7 +122,7 @@
Constructs an array from a [PackedStringArray].
</description>
</method>
<method name="Array">
<method name="Array" qualifiers="constructor">
<return type="Array">
</return>
<argument index="0" name="from" type="PackedVector2Array">
@@ -131,7 +131,7 @@
Constructs an array from a [PackedVector2Array].
</description>
</method>
<method name="Array">
<method name="Array" qualifiers="constructor">
<return type="Array">
</return>
<argument index="0" name="from" type="PackedVector3Array">
@@ -336,6 +336,70 @@
Returns the 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>
</method>
<method name="operator !=" qualifiers="operator">
<return type="bool">
</return>
<argument index="0" name="right" type="Array">
</argument>
<description>
</description>
</method>
<method name="operator +" qualifiers="operator">
<return type="Array">
</return>
<argument index="0" name="right" type="Array">
</argument>
<description>
</description>
</method>
<method name="operator &lt;" qualifiers="operator">
<return type="bool">
</return>
<argument index="0" name="right" type="Array">
</argument>
<description>
</description>
</method>
<method name="operator &lt;=" qualifiers="operator">
<return type="bool">
</return>
<argument index="0" name="right" type="Array">
</argument>
<description>
</description>
</method>
<method name="operator ==" qualifiers="operator">
<return type="bool">
</return>
<argument index="0" name="right" type="Array">
</argument>
<description>
</description>
</method>
<method name="operator &gt;" qualifiers="operator">
<return type="bool">
</return>
<argument index="0" name="right" type="Array">
</argument>
<description>
</description>
</method>
<method name="operator &gt;=" qualifiers="operator">
<return type="bool">
</return>
<argument index="0" name="right" type="Array">
</argument>
<description>
</description>
</method>
<method name="operator []" qualifiers="operator">
<return type="void">
</return>
<argument index="0" name="index" type="int">
</argument>
<description>
</description>
</method>
<method name="pop_back">
<return type="Variant">
</return>