| 3785 | //# endif |
| 3786 | |
| 3787 | static bool IsIntegral(double d) { |
| 3788 | double integral_part; |
| 3789 | return modf(d, &integral_part) == 0.0; |
| 3790 | } |
| 3791 | |
| 3792 | bool Value::isNull() const { return type_ == nullValue; } |
| 3793 |
no outgoing calls
no test coverage detected