summaryrefslogtreecommitdiffstats
path: root/include/core/Array.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/core/Array.hpp')
-rw-r--r--include/core/Array.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/core/Array.hpp b/include/core/Array.hpp
index 1261f74..d766c54 100644
--- a/include/core/Array.hpp
+++ b/include/core/Array.hpp
@@ -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();
};