diff options
author | mashumafi <mashumafi@gmail.com> | 2021-09-19 18:13:09 +0000 |
---|---|---|
committer | mashumafi <mashumafi@gmail.com> | 2021-09-30 23:57:26 +0000 |
commit | 214bbfbefed2ae97bf7eb0eead40b2150d802f6f (patch) | |
tree | cd991a8658981bc0ed7a9e17967a9bfee1bd97e2 /core/templates/vector.h | |
parent | 0e5b0c025ce3d4ad8082cbeb5394423854c2e25f (diff) | |
download | redot-engine-214bbfbefed2ae97bf7eb0eead40b2150d802f6f.tar.gz |
Implement bsearch for Vector and Packed*Array
Diffstat (limited to 'core/templates/vector.h')
-rw-r--r-- | core/templates/vector.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/templates/vector.h b/core/templates/vector.h index 2600604eb7..4b008a45a4 100644 --- a/core/templates/vector.h +++ b/core/templates/vector.h @@ -40,6 +40,7 @@ #include "core/error/error_macros.h" #include "core/os/memory.h" #include "core/templates/cowdata.h" +#include "core/templates/search_array.h" #include "core/templates/sort_array.h" template <class T> @@ -112,6 +113,11 @@ public: sort_custom<_DefaultComparator<T>>(); } + int bsearch(const T &p_value, bool p_before) { + SearchArray<T> search; + return search.bisect(ptrw(), size(), p_value, p_before); + } + Vector<T> duplicate() { return *this; } |