aboutsummaryrefslogtreecommitdiff
path: root/core/array.h
diff options
context:
space:
mode:
authorJuan Linietsky2015-12-12 08:27:30 -0300
committerJuan Linietsky2015-12-12 08:27:30 -0300
commitb191e740d2867c77539e6724aa959e50c78050f9 (patch)
treeecaa036f66d9cbfc1f0296ef331cf86064783e5a /core/array.h
parenta73cf7f79447480b59ac15c9461a2664ac4bc34f (diff)
downloadgodot-b191e740d2867c77539e6724aa959e50c78050f9.tar.gz
godot-b191e740d2867c77539e6724aa959e50c78050f9.tar.zst
godot-b191e740d2867c77539e6724aa959e50c78050f9.zip
Diffstat (limited to 'core/array.h')
-rw-r--r--core/array.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/core/array.h b/core/array.h
index 904309b25..c29b4355c 100644
--- a/core/array.h
+++ b/core/array.h
@@ -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();