| 170 |
numeric power_dyn(numeric const & other) const { return power(other); } |
numeric power_dyn(numeric const & other) const { return power(other); } |
| 171 |
*/ |
*/ |
| 172 |
numeric inverse(void) const; |
numeric inverse(void) const; |
| 173 |
|
int csgn(void) const; |
| 174 |
int compare(numeric const & other) const; |
int compare(numeric const & other) const; |
| 175 |
bool is_equal(numeric const & other) const; |
bool is_equal(numeric const & other) const; |
| 176 |
bool is_zero(void) const; |
bool is_zero(void) const; |
| 267 |
inline numeric inverse(numeric const & x) |
inline numeric inverse(numeric const & x) |
| 268 |
{ return x.inverse(); } |
{ return x.inverse(); } |
| 269 |
|
|
| 270 |
|
inline bool csgn(numeric const & x) |
| 271 |
|
{ return x.csgn(); } |
| 272 |
|
|
| 273 |
inline bool is_zero(numeric const & x) |
inline bool is_zero(numeric const & x) |
| 274 |
{ return x.is_zero(); } |
{ return x.is_zero(); } |
| 275 |
|
|