| 399 | return type_ == FBT_FLOAT || type_ == FBT_INDIRECT_FLOAT; |
| 400 | } |
| 401 | bool IsNumeric() const { return IsIntOrUint() || IsFloat(); } |
| 402 | bool IsString() const { return type_ == FBT_STRING; } |
| 403 | bool IsKey() const { return type_ == FBT_KEY; } |
| 404 | bool IsVector() const { return type_ == FBT_VECTOR || type_ == FBT_MAP; } |