From 214bbfbefed2ae97bf7eb0eead40b2150d802f6f Mon Sep 17 00:00:00 2001 From: mashumafi Date: Sun, 19 Sep 2021 18:13:09 +0000 Subject: Implement bsearch for Vector and Packed*Array --- doc/classes/PackedByteArray.xml | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'doc/classes/PackedByteArray.xml') diff --git a/doc/classes/PackedByteArray.xml b/doc/classes/PackedByteArray.xml index 9b8057d91a..e0c6fb4eba 100644 --- a/doc/classes/PackedByteArray.xml +++ b/doc/classes/PackedByteArray.xml @@ -43,6 +43,15 @@ Appends a [PackedByteArray] at the end of this array. + + + + + + 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. + + -- cgit v1.2.3