Merge pull request #296 from lupoDharkael/missing

Add missing class methods
This commit is contained in:
Thomas Herzog
2019-08-05 10:39:56 +02:00
committed by GitHub
14 changed files with 305 additions and 0 deletions

View File

@@ -133,6 +133,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();
};