* Checks whether the variant is a boolean. * * @returns true if the variant is a boolean. */
| 143 | * @returns true if the variant is a boolean. |
| 144 | */ |
| 145 | bool Value::IsBoolean() const |
| 146 | { |
| 147 | return (GetType() == ValueBoolean); |
| 148 | } |
| 149 | |
| 150 | /** |
| 151 | * Checks whether the variant is a string. |
no outgoing calls
no test coverage detected