diff options
Diffstat (limited to 'core/array.h')
-rw-r--r-- | core/array.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/core/array.h b/core/array.h index ecb91b69dc..096660653e 100644 --- a/core/array.h +++ b/core/array.h @@ -71,7 +71,10 @@ public: void sort_custom(Object *p_obj,const StringName& p_function); void invert(); - int find(const Variant& p_value) const; + int find(const Variant& p_value, int p_from=0) const; + 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; void erase(const Variant& p_value); |