Move the docs for constructors and operators out of methods section
This commit is contained in:
@ -44,83 +44,85 @@
|
||||
</description>
|
||||
<tutorials>
|
||||
</tutorials>
|
||||
<methods>
|
||||
<method name="Array" qualifiers="constructor">
|
||||
<constructors>
|
||||
<constructor name="Array">
|
||||
<return type="Array" />
|
||||
<description>
|
||||
Constructs an empty [Array].
|
||||
</description>
|
||||
</method>
|
||||
<method name="Array" qualifiers="constructor">
|
||||
</constructor>
|
||||
<constructor name="Array">
|
||||
<return type="Array" />
|
||||
<argument index="0" name="from" type="Array" />
|
||||
<description>
|
||||
Constructs an [Array] as a copy of the given [Array].
|
||||
</description>
|
||||
</method>
|
||||
<method name="Array" qualifiers="constructor">
|
||||
</constructor>
|
||||
<constructor name="Array">
|
||||
<return type="Array" />
|
||||
<argument index="0" name="from" type="PackedByteArray" />
|
||||
<description>
|
||||
Constructs an array from a [PackedByteArray].
|
||||
</description>
|
||||
</method>
|
||||
<method name="Array" qualifiers="constructor">
|
||||
</constructor>
|
||||
<constructor name="Array">
|
||||
<return type="Array" />
|
||||
<argument index="0" name="from" type="PackedColorArray" />
|
||||
<description>
|
||||
Constructs an array from a [PackedColorArray].
|
||||
</description>
|
||||
</method>
|
||||
<method name="Array" qualifiers="constructor">
|
||||
</constructor>
|
||||
<constructor name="Array">
|
||||
<return type="Array" />
|
||||
<argument index="0" name="from" type="PackedFloat32Array" />
|
||||
<description>
|
||||
Constructs an array from a [PackedFloat32Array].
|
||||
</description>
|
||||
</method>
|
||||
<method name="Array" qualifiers="constructor">
|
||||
</constructor>
|
||||
<constructor name="Array">
|
||||
<return type="Array" />
|
||||
<argument index="0" name="from" type="PackedFloat64Array" />
|
||||
<description>
|
||||
Constructs an array from a [PackedFloat64Array].
|
||||
</description>
|
||||
</method>
|
||||
<method name="Array" qualifiers="constructor">
|
||||
</constructor>
|
||||
<constructor name="Array">
|
||||
<return type="Array" />
|
||||
<argument index="0" name="from" type="PackedInt32Array" />
|
||||
<description>
|
||||
Constructs an array from a [PackedInt32Array].
|
||||
</description>
|
||||
</method>
|
||||
<method name="Array" qualifiers="constructor">
|
||||
</constructor>
|
||||
<constructor name="Array">
|
||||
<return type="Array" />
|
||||
<argument index="0" name="from" type="PackedInt64Array" />
|
||||
<description>
|
||||
Constructs an array from a [PackedInt64Array].
|
||||
</description>
|
||||
</method>
|
||||
<method name="Array" qualifiers="constructor">
|
||||
</constructor>
|
||||
<constructor name="Array">
|
||||
<return type="Array" />
|
||||
<argument index="0" name="from" type="PackedStringArray" />
|
||||
<description>
|
||||
Constructs an array from a [PackedStringArray].
|
||||
</description>
|
||||
</method>
|
||||
<method name="Array" qualifiers="constructor">
|
||||
</constructor>
|
||||
<constructor name="Array">
|
||||
<return type="Array" />
|
||||
<argument index="0" name="from" type="PackedVector2Array" />
|
||||
<description>
|
||||
Constructs an array from a [PackedVector2Array].
|
||||
</description>
|
||||
</method>
|
||||
<method name="Array" qualifiers="constructor">
|
||||
</constructor>
|
||||
<constructor name="Array">
|
||||
<return type="Array" />
|
||||
<argument index="0" name="from" type="PackedVector3Array" />
|
||||
<description>
|
||||
Constructs an array from a [PackedVector3Array].
|
||||
</description>
|
||||
</method>
|
||||
</constructor>
|
||||
</constructors>
|
||||
<methods>
|
||||
<method name="append">
|
||||
<return type="void" />
|
||||
<argument index="0" name="value" type="Variant" />
|
||||
@ -345,64 +347,6 @@
|
||||
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" />
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="operator !=" qualifiers="operator">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="right" type="Array" />
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="operator +" qualifiers="operator">
|
||||
<return type="Array" />
|
||||
<argument index="0" name="right" type="Array" />
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="operator <" qualifiers="operator">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="right" type="Array" />
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="operator <=" qualifiers="operator">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="right" type="Array" />
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="operator ==" qualifiers="operator">
|
||||
<return type="bool" />
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="operator ==" qualifiers="operator">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="right" type="Array" />
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="operator >" qualifiers="operator">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="right" type="Array" />
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="operator >=" qualifiers="operator">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="right" type="Array" />
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="operator []" qualifiers="operator">
|
||||
<return type="void" />
|
||||
<argument index="0" name="index" type="int" />
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="pop_at">
|
||||
<return type="Variant" />
|
||||
<argument index="0" name="position" type="int" />
|
||||
@ -550,4 +494,64 @@
|
||||
</description>
|
||||
</method>
|
||||
</methods>
|
||||
<operators>
|
||||
<operator name="operator !=">
|
||||
<return type="bool" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator !=">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="right" type="Array" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator +">
|
||||
<return type="Array" />
|
||||
<argument index="0" name="right" type="Array" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator <">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="right" type="Array" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator <=">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="right" type="Array" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator ==">
|
||||
<return type="bool" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator ==">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="right" type="Array" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator >">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="right" type="Array" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator >=">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="right" type="Array" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator []">
|
||||
<return type="void" />
|
||||
<argument index="0" name="index" type="int" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
</operators>
|
||||
</class>
|
||||
|
||||
Reference in New Issue
Block a user