| 1250 | } |
| 1251 | |
| 1252 | static bool IsIntegral(double d) { |
| 1253 | double integral_part; |
| 1254 | return modf(d, &integral_part) == 0.0; |
| 1255 | } |
| 1256 | |
| 1257 | bool Value::isNull() const { return type() == nullValue; } |
| 1258 |
no outgoing calls
no test coverage detected
searching dependent graphs…