Add Array.front() and Array.back()

This commit is contained in:
Kazuo256
2016-11-18 18:30:16 -02:00
parent 959683c3d8
commit bf4fda64fd
4 changed files with 31 additions and 0 deletions

View File

@@ -67,6 +67,9 @@ public:
void insert(int p_pos, const Variant& p_value);
void remove(int p_pos);
Variant front() const;
Variant back() const;
void sort();
void sort_custom(Object *p_obj,const StringName& p_function);
void invert();