Add 'rfind' function to Array

This commit is contained in:
George Marques
2016-06-10 17:28:09 -03:00
parent 269d570420
commit 46b6bb9dc4
3 changed files with 20 additions and 3 deletions

View File

@ -72,6 +72,7 @@ public:
void invert();
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;