add pop_back/pop_front/push_back/push_front to array, to make it according to doc, fixes #3040
This commit is contained in:
@ -53,7 +53,7 @@ public:
|
||||
bool empty() const;
|
||||
void clear();
|
||||
|
||||
bool is_shared() const;
|
||||
bool is_shared() const;
|
||||
|
||||
bool operator==(const Array& p_array) const;
|
||||
|
||||
@ -75,6 +75,10 @@ public:
|
||||
|
||||
void erase(const Variant& p_value);
|
||||
|
||||
void push_front(const Variant& p_value);
|
||||
void pop_back();
|
||||
void pop_front();
|
||||
|
||||
Array(const Array& p_from);
|
||||
Array(bool p_shared=false);
|
||||
~Array();
|
||||
|
||||
Reference in New Issue
Block a user