summaryrefslogtreecommitdiffstats
path: root/modules/gdnative/gdnative_api.json
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-11-21 13:14:08 +0100
committerGitHub <noreply@github.com>2017-11-21 13:14:08 +0100
commit1c2782a7c7456b4a473e519ebb40968c521911e7 (patch)
tree715af6d88652fa9c2ba4a9c22ed539908ad0b157 /modules/gdnative/gdnative_api.json
parent5a23136d1bdc88589ee7082098dadf74afef53c2 (diff)
parentd6e54de50239e8ac1de645bd411eeddbf627e4dc (diff)
downloadredot-engine-1c2782a7c7456b4a473e519ebb40968c521911e7.tar.gz
Merge pull request #12590 from poke1024/bsearch
Add bsearch and bsearch_custom to Array
Diffstat (limited to 'modules/gdnative/gdnative_api.json')
-rw-r--r--modules/gdnative/gdnative_api.json20
1 files changed, 20 insertions, 0 deletions
diff --git a/modules/gdnative/gdnative_api.json b/modules/gdnative/gdnative_api.json
index 007c7955d4..0438a196cf 100644
--- a/modules/gdnative/gdnative_api.json
+++ b/modules/gdnative/gdnative_api.json
@@ -2680,6 +2680,26 @@
]
},
{
+ "name": "godot_array_bsearch",
+ "return_type": "godot_int",
+ "arguments": [
+ ["godot_array *", "p_self"],
+ ["const godot_variant *", "p_value"],
+ ["const godot_bool", "p_before"]
+ ]
+ },
+ {
+ "name": "godot_array_bsearch_custom",
+ "return_type": "godot_int",
+ "arguments": [
+ ["godot_array *", "p_self"],
+ ["const godot_variant *", "p_value"],
+ ["godot_object *", "p_obj"],
+ ["const godot_string *", "p_func"],
+ ["const godot_bool", "p_before"]
+ ]
+ },
+ {
"name": "godot_array_destroy",
"return_type": "void",
"arguments": [