Move the docs for constructors and operators out of methods section
This commit is contained in:
@ -9,27 +9,29 @@
|
||||
</description>
|
||||
<tutorials>
|
||||
</tutorials>
|
||||
<methods>
|
||||
<method name="PackedFloat64Array" qualifiers="constructor">
|
||||
<constructors>
|
||||
<constructor name="PackedFloat64Array">
|
||||
<return type="PackedFloat64Array" />
|
||||
<description>
|
||||
Constructs an empty [PackedFloat64Array].
|
||||
</description>
|
||||
</method>
|
||||
<method name="PackedFloat64Array" qualifiers="constructor">
|
||||
</constructor>
|
||||
<constructor name="PackedFloat64Array">
|
||||
<return type="PackedFloat64Array" />
|
||||
<argument index="0" name="from" type="PackedFloat64Array" />
|
||||
<description>
|
||||
Constructs a [PackedFloat64Array] as a copy of the given [PackedFloat64Array].
|
||||
</description>
|
||||
</method>
|
||||
<method name="PackedFloat64Array" qualifiers="constructor">
|
||||
</constructor>
|
||||
<constructor name="PackedFloat64Array">
|
||||
<return type="PackedFloat64Array" />
|
||||
<argument index="0" name="from" type="Array" />
|
||||
<description>
|
||||
Constructs a new [PackedFloat64Array]. Optionally, you can pass in a generic [Array] that will be converted.
|
||||
</description>
|
||||
</method>
|
||||
</constructor>
|
||||
</constructors>
|
||||
<methods>
|
||||
<method name="append">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="value" type="float" />
|
||||
@ -87,40 +89,6 @@
|
||||
Returns [code]true[/code] if the array is empty.
|
||||
</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="PackedFloat64Array" />
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="operator +" qualifiers="operator">
|
||||
<return type="PackedFloat64Array" />
|
||||
<argument index="0" name="right" type="PackedFloat64Array" />
|
||||
<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="PackedFloat64Array" />
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="operator []" qualifiers="operator">
|
||||
<return type="float" />
|
||||
<argument index="0" name="index" type="int" />
|
||||
<description>
|
||||
</description>
|
||||
</method>
|
||||
<method name="push_back">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="value" type="float" />
|
||||
@ -183,4 +151,40 @@
|
||||
</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="PackedFloat64Array" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator +">
|
||||
<return type="PackedFloat64Array" />
|
||||
<argument index="0" name="right" type="PackedFloat64Array" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator ==">
|
||||
<return type="bool" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator ==">
|
||||
<return type="bool" />
|
||||
<argument index="0" name="right" type="PackedFloat64Array" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
<operator name="operator []">
|
||||
<return type="float" />
|
||||
<argument index="0" name="index" type="int" />
|
||||
<description>
|
||||
</description>
|
||||
</operator>
|
||||
</operators>
|
||||
</class>
|
||||
|
||||
Reference in New Issue
Block a user