diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2020-02-20 23:19:00 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2020-07-06 22:16:39 -0400 |
commit | af80bcd2f8e01130357b090126c26717b736665a (patch) | |
tree | 9b532df600ab71575efe0e558b0c09450b4f42e1 /doc/classes/PackedInt32Array.xml | |
parent | 141ce4d1f9e195ec3235d0fcbd164414e50370ee (diff) | |
download | redot-engine-af80bcd2f8e01130357b090126c26717b736665a.tar.gz |
Add sort and has methods to PackedArrays
Diffstat (limited to 'doc/classes/PackedInt32Array.xml')
-rw-r--r-- | doc/classes/PackedInt32Array.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/classes/PackedInt32Array.xml b/doc/classes/PackedInt32Array.xml index 176c624956..b796d9cacb 100644 --- a/doc/classes/PackedInt32Array.xml +++ b/doc/classes/PackedInt32Array.xml @@ -45,6 +45,15 @@ Returns [code]true[/code] if the array is empty. </description> </method> + <method name="has"> + <return type="bool"> + </return> + <argument index="0" name="value" type="int"> + </argument> + <description> + Returns [code]true[/code] if the array contains [code]value[/code]. + </description> + </method> <method name="insert"> <return type="int"> </return> @@ -108,6 +117,13 @@ Returns the array size. </description> </method> + <method name="sort"> + <return type="void"> + </return> + <description> + Sorts the elements of the array in ascending order. + </description> + </method> </methods> <constants> </constants> |