| 1295 | //# endif |
| 1296 | |
| 1297 | static bool IsIntegral(double d) { |
| 1298 | double integral_part; |
| 1299 | return modf(d, &integral_part) == 0.0; |
| 1300 | } |
| 1301 | |
| 1302 | bool Value::isNull() const { return type_ == nullValue; } |
| 1303 |
no outgoing calls
no test coverage detected