diff options
author | reduz <reduzio@gmail.com> | 2020-11-10 18:31:33 -0300 |
---|---|---|
committer | reduz <reduzio@gmail.com> | 2020-11-10 19:31:10 -0300 |
commit | 5288ff538d75d2ddab257a9e1e40050c9b8fa1cb (patch) | |
tree | e07e6e9a4d22cce046f03b36d06af28a73fea362 /core/string/ustring.h | |
parent | a80ec80b57f419d84d196fb46dcb5f194c880001 (diff) |
Create Variant built-in functions.
-Moved Expression to use this, removed its own.
-Eventually GDScript/VisualScript/GDNative need to be moved to this.
-Given the JSON functions were hacked-in, removed them and created a new JSONParser class
-Made sure these functions appear properly in documentation, since they will be removed from GDScript
Diffstat (limited to 'core/string/ustring.h')
-rw-r--r-- | core/string/ustring.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/core/string/ustring.h b/core/string/ustring.h index 201b439b12..b46733ab66 100644 --- a/core/string/ustring.h +++ b/core/string/ustring.h @@ -536,4 +536,24 @@ String RTRN(const String &p_text, const String &p_text_plural, int p_n, const St bool is_symbol(char32_t c); bool select_word(const String &p_s, int p_col, int &r_beg, int &r_end); +_FORCE_INLINE_ void sarray_add_str(Vector<String> &arr) { +} + +_FORCE_INLINE_ void sarray_add_str(Vector<String> &arr, const String &p_str) { + arr.push_back(p_str); +} + +template <class... P> +_FORCE_INLINE_ void sarray_add_str(Vector<String> &arr, const String &p_str, P... p_args) { + arr.push_back(p_str); + sarray_add_str(arr, p_args...); +} + +template <class... P> +_FORCE_INLINE_ Vector<String> sarray(P... p_args) { + Vector<String> arr; + sarray_add_str(arr, p_args...); + return arr; +} + #endif // USTRING_H |