| 2726 | } |
| 2727 | |
| 2728 | bool Value::isIntegral() const { |
| 2729 | #if defined(JSON_HAS_INT64) |
| 2730 | return isInt64() || isUInt64(); |
| 2731 | #else |
| 2732 | return isInt() || isUInt(); |
| 2733 | #endif |
| 2734 | } |
| 2735 | |
| 2736 | bool Value::isDouble() const { return type_ == realValue || isIntegral(); } |
| 2737 |
nothing calls this directly
no outgoing calls
no test coverage detected