diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-10-01 07:52:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-01 07:52:51 +0200 |
commit | b32f84d473df33b1c208971c9c83d1856150ed6f (patch) | |
tree | 64eaefb47f349effd9c5d882a951e041473537fb /doc/classes/PackedByteArray.xml | |
parent | a28f44fa53c95138b4850547899864d93d12d89b (diff) | |
parent | 214bbfbefed2ae97bf7eb0eead40b2150d802f6f (diff) | |
download | redot-engine-b32f84d473df33b1c208971c9c83d1856150ed6f.tar.gz |
Merge pull request #52850 from mashumafi/vector-bsearch
Diffstat (limited to 'doc/classes/PackedByteArray.xml')
-rw-r--r-- | doc/classes/PackedByteArray.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/classes/PackedByteArray.xml b/doc/classes/PackedByteArray.xml index 8e94254a1f..39733baf40 100644 --- a/doc/classes/PackedByteArray.xml +++ b/doc/classes/PackedByteArray.xml @@ -43,6 +43,15 @@ Appends a [PackedByteArray] at the end of this array. </description> </method> + <method name="bsearch"> + <return type="int" /> + <argument index="0" name="value" type="int" /> + <argument index="1" name="before" type="bool" default="true" /> + <description> + Finds the index of an existing value (or the insertion index that maintains sorting order, if the value is not yet present in the array) using binary search. Optionally, a [code]before[/code] specifier can be passed. If [code]false[/code], the returned index comes after all existing entries of the value in the array. + [b]Note:[/b] Calling [method bsearch] on an unsorted array results in unexpected behavior. + </description> + </method> <method name="compress" qualifiers="const"> <return type="PackedByteArray" /> <argument index="0" name="compression_mode" type="int" default="0" /> |