| 3764 | //# endif |
| 3765 | |
| 3766 | static bool IsIntegral(double d) { |
| 3767 | double integral_part; |
| 3768 | return modf(d, &integral_part) == 0.0; |
| 3769 | } |
| 3770 | |
| 3771 | bool Value::isNull() const { return type_ == nullValue; } |
| 3772 |
no outgoing calls
no test coverage detected