Add shuffle() method to Array

This commit is contained in:
poke1024
2018-01-10 19:36:53 +01:00
parent a60896869e
commit 75d69fb4ec
4 changed files with 22 additions and 0 deletions

View File

@ -71,6 +71,7 @@ public:
Array &sort();
Array &sort_custom(Object *p_obj, const StringName &p_function);
void shuffle();
int bsearch(const Variant &p_value, bool p_before = true);
int bsearch_custom(const Variant &p_value, Object *p_obj, const StringName &p_function, bool p_before = true);
Array &invert();