| 3679 | //# endif |
| 3680 | |
| 3681 | static bool IsIntegral(double d) { |
| 3682 | double integral_part; |
| 3683 | return modf(d, &integral_part) == 0.0; |
| 3684 | } |
| 3685 | |
| 3686 | bool Value::isNull() const { return type() == nullValue; } |
| 3687 |
no outgoing calls
no test coverage detected