Skip to content

Commit 5595d82

Browse files
committedMar 21, 2025
Merge pull request #104258 from Monochrome-debug/documentation_change
Improve documentation for return value of `Packed*Array.resize`
2 parents 1f682b6 + 44d10c5 commit 5595d82

11 files changed

+12
-2
lines changed
 

‎doc/classes/Array.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@
674674
<param index="0" name="size" type="int" />
675675
<description>
676676
Sets the array's number of elements to [param size]. If [param size] is smaller than the array's current size, the elements at the end are removed. If [param size] is greater, new default elements (usually [code]null[/code]) are added, depending on the array's type.
677-
Returns [constant OK] on success, or one of the other [enum Error] constants if this method fails.
677+
Returns [constant OK] on success, or one of the following [enum Error] constants if this method fails: [constant ERR_LOCKED] if the array is read-only, [constant ERR_INVALID_PARAMETER] if the size is negative, or [constant ERR_OUT_OF_MEMORY] if allocations fail. Use [method size] to find the actual size of the array after resize.
678678
[b]Note:[/b] Calling this method once and assigning the new values is faster than calling [method append] for every new element.
679679
</description>
680680
</method>

‎doc/classes/PackedByteArray.xml

+1
Original file line numberDiff line numberDiff line change
@@ -415,6 +415,7 @@
415415
<param index="0" name="new_size" type="int" />
416416
<description>
417417
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one.
418+
Returns [constant OK] on success, or one of the following [enum Error] constants if this method fails: [constant ERR_INVALID_PARAMETER] if the size is negative, or [constant ERR_OUT_OF_MEMORY] if allocations fail. Use [method size] to find the actual size of the array after resize.
418419
</description>
419420
</method>
420421
<method name="reverse">

‎doc/classes/PackedColorArray.xml

+1
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@
148148
<param index="0" name="new_size" type="int" />
149149
<description>
150150
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one.
151+
Returns [constant OK] on success, or one of the following [enum Error] constants if this method fails: [constant ERR_INVALID_PARAMETER] if the size is negative, or [constant ERR_OUT_OF_MEMORY] if allocations fail. Use [method size] to find the actual size of the array after resize.
151152
</description>
152153
</method>
153154
<method name="reverse">

‎doc/classes/PackedFloat32Array.xml

+1
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@
149149
<param index="0" name="new_size" type="int" />
150150
<description>
151151
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one.
152+
Returns [constant OK] on success, or one of the following [enum Error] constants if this method fails: [constant ERR_INVALID_PARAMETER] if the size is negative, or [constant ERR_OUT_OF_MEMORY] if allocations fail. Use [method size] to find the actual size of the array after resize.
152153
</description>
153154
</method>
154155
<method name="reverse">

‎doc/classes/PackedFloat64Array.xml

+1
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@
150150
<param index="0" name="new_size" type="int" />
151151
<description>
152152
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one.
153+
Returns [constant OK] on success, or one of the following [enum Error] constants if this method fails: [constant ERR_INVALID_PARAMETER] if the size is negative, or [constant ERR_OUT_OF_MEMORY] if allocations fail. Use [method size] to find the actual size of the array after resize.
153154
</description>
154155
</method>
155156
<method name="reverse">

‎doc/classes/PackedInt32Array.xml

+1
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@
144144
<param index="0" name="new_size" type="int" />
145145
<description>
146146
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one.
147+
Returns [constant OK] on success, or one of the following [enum Error] constants if this method fails: [constant ERR_INVALID_PARAMETER] if the size is negative, or [constant ERR_OUT_OF_MEMORY] if allocations fail. Use [method size] to find the actual size of the array after resize.
147148
</description>
148149
</method>
149150
<method name="reverse">

‎doc/classes/PackedInt64Array.xml

+1
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@
145145
<param index="0" name="new_size" type="int" />
146146
<description>
147147
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one.
148+
Returns [constant OK] on success, or one of the following [enum Error] constants if this method fails: [constant ERR_INVALID_PARAMETER] if the size is negative, or [constant ERR_OUT_OF_MEMORY] if allocations fail. Use [method size] to find the actual size of the array after resize.
148149
</description>
149150
</method>
150151
<method name="reverse">

‎doc/classes/PackedStringArray.xml

+1
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@
151151
<param index="0" name="new_size" type="int" />
152152
<description>
153153
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one.
154+
Returns [constant OK] on success, or one of the following [enum Error] constants if this method fails: [constant ERR_INVALID_PARAMETER] if the size is negative, or [constant ERR_OUT_OF_MEMORY] if allocations fail. Use [method size] to find the actual size of the array after resize.
154155
</description>
155156
</method>
156157
<method name="reverse">

‎doc/classes/PackedVector2Array.xml

+1
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@
154154
<param index="0" name="new_size" type="int" />
155155
<description>
156156
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one.
157+
Returns [constant OK] on success, or one of the following [enum Error] constants if this method fails: [constant ERR_INVALID_PARAMETER] if the size is negative, or [constant ERR_OUT_OF_MEMORY] if allocations fail. Use [method size] to find the actual size of the array after resize.
157158
</description>
158159
</method>
159160
<method name="reverse">

‎doc/classes/PackedVector3Array.xml

+1
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@
153153
<param index="0" name="new_size" type="int" />
154154
<description>
155155
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one.
156+
Returns [constant OK] on success, or one of the following [enum Error] constants if this method fails: [constant ERR_INVALID_PARAMETER] if the size is negative, or [constant ERR_OUT_OF_MEMORY] if allocations fail. Use [method size] to find the actual size of the array after resize.
156157
</description>
157158
</method>
158159
<method name="reverse">

‎doc/classes/PackedVector4Array.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,8 @@
152152
<return type="int" />
153153
<param index="0" name="new_size" type="int" />
154154
<description>
155-
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size.
155+
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one.
156+
Returns [constant OK] on success, or one of the following [enum Error] constants if this method fails: [constant ERR_INVALID_PARAMETER] if the size is negative, or [constant ERR_OUT_OF_MEMORY] if allocations fail. Use [method size] to find the actual size of the array after resize.
156157
</description>
157158
</method>
158159
<method name="reverse">

0 commit comments

Comments
 (0)
Please sign in to comment.