[3.x] Bind Array and Pool*Array get and set functions

This commit is contained in:
Aaron Franke
2024-08-26 14:46:47 -07:00
parent 01c78d87fe
commit 699a48d8f1
12 changed files with 86 additions and 0 deletions

View File

@@ -100,6 +100,13 @@
Searches the array for a value and returns its index or [code]-1[/code] if not found. Optionally, the initial search index can be passed. Returns [code]-1[/code] if [code]from[/code] is out of bounds.
</description>
</method>
<method name="get">
<return type="int" />
<argument index="0" name="index" type="int" />
<description>
Returns the byte at the given [code]index[/code] in the array. This is the same as using the [code][][/code] operator ([code]array[index][/code]).
</description>
</method>
<method name="get_string_from_ascii">
<return type="String" />
<description>