| 95 | } |
| 96 | |
| 97 | bool isLongValue(MathLib::bigint value) const { |
| 98 | return value >= min_value(long_bit) && value <= max_value(long_bit); |
| 99 | } |
| 100 | |
| 101 | bool isLongValue(MathLib::biguint value) const { |
| 102 | const MathLib::biguint longMax = max_value(long_bit); |
nothing calls this directly
no test coverage detected