diff options
author | Jordan Schidlowsky <jordan@winterpixel.com> | 2020-12-17 14:26:05 -0600 |
---|---|---|
committer | Jordan Schidlowsky <jordan@noodlecake.com> | 2020-12-17 16:09:32 -0600 |
commit | 2d56e092765affde1904e76fe912329db0e9eab6 (patch) | |
tree | c3e918c0f993d75c4fbf13519eeb4b2db6bb8041 /core/templates/vector.h | |
parent | 2c0d1c3b91a048c8aab6856c9821a98280ad82e6 (diff) | |
download | redot-engine-2d56e092765affde1904e76fe912329db0e9eab6.tar.gz |
packed*arrays are pass by ref now. support duplicate and update documentation
Diffstat (limited to 'core/templates/vector.h')
-rw-r--r-- | core/templates/vector.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/templates/vector.h b/core/templates/vector.h index 9d45f7c30a..7420384bf7 100644 --- a/core/templates/vector.h +++ b/core/templates/vector.h @@ -112,6 +112,10 @@ public: sort_custom<_DefaultComparator<T>>(); } + Vector<T> duplicate() { + return *this; + } + void ordered_insert(const T &p_val) { int i; for (i = 0; i < _cowdata.size(); i++) { |