| 148 |
const numeric & operator=(double d); |
const numeric & operator=(double d); |
| 149 |
const numeric & operator=(const char *s); |
const numeric & operator=(const char *s); |
| 150 |
const numeric inverse() const; |
const numeric inverse() const; |
| 151 |
|
numeric step() const; |
| 152 |
int csgn() const; |
int csgn() const; |
| 153 |
int compare(const numeric &other) const; |
int compare(const numeric &other) const; |
| 154 |
bool is_equal(const numeric &other) const; |
bool is_equal(const numeric &other) const; |
| 251 |
inline const numeric inverse(const numeric &x) |
inline const numeric inverse(const numeric &x) |
| 252 |
{ return x.inverse(); } |
{ return x.inverse(); } |
| 253 |
|
|
| 254 |
|
inline numeric step(const numeric &x) |
| 255 |
|
{ return x.step(); } |
| 256 |
|
|
| 257 |
inline int csgn(const numeric &x) |
inline int csgn(const numeric &x) |
| 258 |
{ return x.csgn(); } |
{ return x.csgn(); } |
| 259 |
|
|