summaryrefslogtreecommitdiffstats
path: root/doc/classes/PackedInt32Array.xml
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2022-08-17 00:18:22 +0200
committerkobewi <kobewi4e@gmail.com>2022-08-19 00:43:29 +0200
commitb099a8570cf42e9108f914a11e8e1f63c5ce8729 (patch)
tree110433a7a629d0d09256f079780ed181ee2116e8 /doc/classes/PackedInt32Array.xml
parent17ca5b913c0a1fdad120a0451bd8183a2c6927ef (diff)
downloadredot-engine-b099a8570cf42e9108f914a11e8e1f63c5ce8729.tar.gz
Complete documentation of packed arrays
Diffstat (limited to 'doc/classes/PackedInt32Array.xml')
-rw-r--r--doc/classes/PackedInt32Array.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/classes/PackedInt32Array.xml b/doc/classes/PackedInt32Array.xml
index db4c8c0937..2f9032e214 100644
--- a/doc/classes/PackedInt32Array.xml
+++ b/doc/classes/PackedInt32Array.xml
@@ -188,24 +188,29 @@
<return type="bool" />
<param index="0" name="right" type="PackedInt32Array" />
<description>
+ Returns [code]true[/code] if contents of the arrays differ.
</description>
</operator>
<operator name="operator +">
<return type="PackedInt32Array" />
<param index="0" name="right" type="PackedInt32Array" />
<description>
+ Returns a new [PackedInt32Array] with contents of [param right] added at the end of this array. For better performance, consider using [method append_array] instead.
</description>
</operator>
<operator name="operator ==">
<return type="bool" />
<param index="0" name="right" type="PackedInt32Array" />
<description>
+ Returns [code]true[/code] if contents of both arrays are the same, i.e. they have all equal ints at the corresponding indices.
</description>
</operator>
<operator name="operator []">
<return type="int" />
<param index="0" name="index" type="int" />
<description>
+ Returns the [int] at index [param index]. Negative indices can be used to access the elements starting from the end. Using index out of array's bounds will result in an error.
+ Note that [int] type is 64-bit, unlike the values stored in the array.
</description>
</operator>
</operators>