| 86 | Platform(); |
| 87 | |
| 88 | bool isIntValue(MathLib::bigint value) const { |
| 89 | return value >= min_value(int_bit) && value <= max_value(int_bit); |
| 90 | } |
| 91 | |
| 92 | bool isIntValue(MathLib::biguint value) const { |
| 93 | const unsigned long long intMax = max_value(int_bit); |
nothing calls this directly
no test coverage detected