* Checks whether the variant is a string. * * @returns true if the variant is a string. */
| 153 | * @returns true if the variant is a string. |
| 154 | */ |
| 155 | bool Value::IsString() const |
| 156 | { |
| 157 | return (GetType() == ValueString); |
| 158 | } |
| 159 | |
| 160 | /** |
| 161 | * Checks whether the variant is a non-null object. |
no outgoing calls
no test coverage detected