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/PackedByteArray.xml | |
parent | 141ce4d1f9e195ec3235d0fcbd164414e50370ee (diff) | |
download | redot-engine-af80bcd2f8e01130357b090126c26717b736665a.tar.gz |
Add sort and has methods to PackedArrays
Diffstat (limited to 'doc/classes/PackedByteArray.xml')
-rw-r--r-- | doc/classes/PackedByteArray.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/classes/PackedByteArray.xml b/doc/classes/PackedByteArray.xml index b08357e278..08f8558881 100644 --- a/doc/classes/PackedByteArray.xml +++ b/doc/classes/PackedByteArray.xml @@ -78,6 +78,15 @@ Returns a copy of the array's contents as [String]. Slower than [method get_string_from_ascii] but supports UTF-8 encoded data. Use this function if you are unsure about the source of the data. For user input this function should always be preferred. </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="hex_encode"> <return type="String"> </return> @@ -152,6 +161,13 @@ Returns the size of the array. </description> </method> + <method name="sort"> + <return type="void"> + </return> + <description> + Sorts the elements of the array in ascending order. + </description> + </method> <method name="subarray"> <return type="PackedByteArray"> </return> |