1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-12 13:20:55 +00:00

Array has(var value) function

This commit is contained in:
Pawel Kowal
2016-07-02 19:03:35 +02:00
parent 1b9433594e
commit 96eb97cbbf
3 changed files with 7 additions and 0 deletions

View File

@@ -75,6 +75,7 @@ public:
int rfind(const Variant& p_value, int p_from=-1) const;
int find_last(const Variant& p_value) const;
int count(const Variant& p_value) const;
bool has(const Variant& p_value) const;
void erase(const Variant& p_value);