Add missing class methods

This commit is contained in:
lupoDharkael
2019-05-22 11:06:01 +02:00
parent bcc39bbf4b
commit b895d3c326
14 changed files with 305 additions and 0 deletions

View File

@@ -98,6 +98,19 @@ public:
void sort_custom(Object *obj, const String &func);
int bsearch(const Variant &value, const bool before = true);
int bsearch_custom(const Variant &value, const Object *obj,
const String &func, const bool before = true);
Array duplicate(const bool deep = false) const;
Variant max() const;
Variant min() const;
void shuffle();
~Array();
};