From c50acc7339162eac734b20344c6422b740b978ab Mon Sep 17 00:00:00 2001 From: Tomasz Chabora Date: Mon, 19 Oct 2020 21:21:16 +0200 Subject: Add filter, map and reduce to Array --- core/variant/array.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'core/variant/array.h') diff --git a/core/variant/array.h b/core/variant/array.h index 5ce977ee4b..540dcb1f4e 100644 --- a/core/variant/array.h +++ b/core/variant/array.h @@ -101,6 +101,9 @@ public: Array duplicate(bool p_deep = false) const; Array slice(int p_begin, int p_end, int p_step = 1, bool p_deep = false) const; + Array filter(const Callable &p_callable) const; + Array map(const Callable &p_callable) const; + Variant reduce(const Callable &p_callable, const Variant &p_accum) const; bool operator<(const Array &p_array) const; bool operator<=(const Array &p_array) const; -- cgit v1.2.3