Add fill method to Arrays and PackedArrays

This commit is contained in:
Matheus Lima Cunha
2021-02-25 11:10:39 -03:00
parent e271dba9cb
commit efd27a63c1
14 changed files with 127 additions and 0 deletions

View File

@@ -74,6 +74,7 @@ public:
void insert(int p_pos, const Variant &p_value);
void remove(int p_pos);
void fill(const Variant &p_value);
Variant front() const;
Variant back() const;