diff options
Diffstat (limited to 'core/variant')
-rw-r--r-- | core/variant/variant.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/variant/variant.h b/core/variant/variant.h index 21342ae6ef..17e701cf66 100644 --- a/core/variant/variant.h +++ b/core/variant/variant.h @@ -338,6 +338,9 @@ public: _FORCE_INLINE_ bool is_num() const { return type == INT || type == FLOAT; } + _FORCE_INLINE_ bool is_string() const { + return type == STRING || type == STRING_NAME; + } _FORCE_INLINE_ bool is_array() const { return type >= ARRAY; } |