diff options
| author | Juan Linietsky | 2015-12-12 08:27:30 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2015-12-12 08:27:30 -0300 |
| commit | b191e740d2867c77539e6724aa959e50c78050f9 (patch) | |
| tree | ecaa036f66d9cbfc1f0296ef331cf86064783e5a /core/array.h | |
| parent | a73cf7f79447480b59ac15c9461a2664ac4bc34f (diff) | |
| download | godot-b191e740d2867c77539e6724aa959e50c78050f9.tar.gz godot-b191e740d2867c77539e6724aa959e50c78050f9.tar.zst godot-b191e740d2867c77539e6724aa959e50c78050f9.zip | |
Diffstat (limited to 'core/array.h')
| -rw-r--r-- | core/array.h | 6 |
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(); |
