| 269 |
inline numeric inverse(const numeric & x) |
inline numeric inverse(const numeric & x) |
| 270 |
{ return x.inverse(); } |
{ return x.inverse(); } |
| 271 |
|
|
| 272 |
inline bool csgn(const numeric & x) |
inline int csgn(const numeric & x) |
| 273 |
{ return x.csgn(); } |
{ return x.csgn(); } |
| 274 |
|
|
| 275 |
inline bool is_zero(const numeric & x) |
inline bool is_zero(const numeric & x) |
| 308 |
inline bool is_crational(const numeric & x) |
inline bool is_crational(const numeric & x) |
| 309 |
{ return x.is_crational(); } |
{ return x.is_crational(); } |
| 310 |
|
|
| 311 |
inline numeric real(const numeric & x) |
inline const numeric real(const numeric & x) |
| 312 |
{ return x.real(); } |
{ return x.real(); } |
| 313 |
|
|
| 314 |
inline numeric imag(const numeric & x) |
inline const numeric imag(const numeric & x) |
| 315 |
{ return x.imag(); } |
{ return x.imag(); } |
| 316 |
|
|
| 317 |
inline numeric numer(const numeric & x) |
inline const numeric numer(const numeric & x) |
| 318 |
{ return x.numer(); } |
{ return x.numer(); } |
| 319 |
|
|
| 320 |
inline numeric denom(const numeric & x) |
inline const numeric denom(const numeric & x) |
| 321 |
{ return x.denom(); } |
{ return x.denom(); } |
| 322 |
|
|
| 323 |
// numeric evaluation functions for class constant objects: |
// numeric evaluation functions for class constant objects: |