* Checks whether the variant is a number. * * @returns true if the variant is a number. */
| 133 | * @returns true if the variant is a number. |
| 134 | */ |
| 135 | bool Value::IsNumber() const |
| 136 | { |
| 137 | return (GetType() == ValueNumber); |
| 138 | } |
| 139 | |
| 140 | /** |
| 141 | * Checks whether the variant is a boolean. |
no outgoing calls
no test coverage detected