summaryrefslogtreecommitdiffstats
path: root/doc/classes/PackedInt32Array.xml
diff options
context:
space:
mode:
authorNathan Franke <natfra@pm.me>2021-11-26 19:18:26 -0600
committerNathan Franke <natfra@pm.me>2021-11-26 22:13:12 -0600
commitdd30253cdcf9b43e401cb3ba6b973f8890551a81 (patch)
treee4635fdb01090bc6b3e8d5179a0f4588f6a4f61e /doc/classes/PackedInt32Array.xml
parentb43281c8abf2d16d65f75817f0554a9b8ee044aa (diff)
downloadredot-engine-dd30253cdcf9b43e401cb3ba6b973f8890551a81.tar.gz
PackedByteArray, Array slice end exclusive, rename subarray to slice
Diffstat (limited to 'doc/classes/PackedInt32Array.xml')
-rw-r--r--doc/classes/PackedInt32Array.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/classes/PackedInt32Array.xml b/doc/classes/PackedInt32Array.xml
index c6ff31ebdd..cef113dee9 100644
--- a/doc/classes/PackedInt32Array.xml
+++ b/doc/classes/PackedInt32Array.xml
@@ -130,17 +130,17 @@
Returns the array size.
</description>
</method>
- <method name="sort">
- <return type="void" />
+ <method name="slice" qualifiers="const">
+ <return type="PackedInt32Array" />
+ <argument index="0" name="begin" type="int" />
+ <argument index="1" name="end" type="int" />
<description>
- Sorts the elements of the array in ascending order.
</description>
</method>
- <method name="subarray" qualifiers="const">
- <return type="PackedInt32Array" />
- <argument index="0" name="from" type="int" />
- <argument index="1" name="to" type="int" />
+ <method name="sort">
+ <return type="void" />
<description>
+ Sorts the elements of the array in ascending order.
</description>
</method>
<method name="to_byte_array" qualifiers="const">