| 466 | bool isfinite BOOST_PREVENT_MACRO_SUBSTITUTION() const { return (fpclass == cpp_dec_float_finite); } |
| 467 | |
| 468 | bool iszero () const |
| 469 | { |
| 470 | return ((fpclass == cpp_dec_float_finite) && (data[0u] == 0u)); |
| 471 | } |
| 472 | |
| 473 | bool isone () const; |
| 474 | bool isint () const; |
no outgoing calls
no test coverage detected