* Checks whether the variant is a non-null object. * * @returns true if the variant is a non-null object, false otherwise. */
| 163 | * @returns true if the variant is a non-null object, false otherwise. |
| 164 | */ |
| 165 | bool Value::IsObject() const |
| 166 | { |
| 167 | return (GetType() == ValueObject); |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | * Returns the type of the value. |
no outgoing calls
no test coverage detected