Go to the source code of this file.
|
| int | isfloat (const num &n) |
| |
| const num | operator+ (const num &x, const num &y) |
| |
| const num | operator- (const num &x, const num &y) |
| |
| const num | operator* (const num &x, const num &y) |
| |
| const num | operator/ (const num &x, const num &y) |
| |
| const num | operator% (const num &x, const num &y) |
| |
| const num | operator<< (const num &x, const num &y) |
| |
| const num | operator>> (const num &x, const num &y) |
| |
| const num | operator& (const num &x, const num &y) |
| |
| const num | operator| (const num &x, const num &y) |
| |
| const num | operator^ (const num &x, const num &y) |
| |
| const num | operator> (const num &x, const num &y) |
| |
| const num | operator< (const num &x, const num &y) |
| |
| const num | operator>= (const num &x, const num &y) |
| |
| const num | operator<= (const num &x, const num &y) |
| |
| const num | operator== (const num &x, const num &y) |
| |
| const num | operator!= (const num &x, const num &y) |
| |
| int isfloat |
( |
const num & |
n | ) |
|
|
inline |
| const num operator!= |
( |
const num & |
x, |
|
|
const num & |
y |
|
) |
| |
|
inline |
| const num operator% |
( |
const num & |
x, |
|
|
const num & |
y |
|
) |
| |
|
inline |
Definition at line 102 of file num.hh.
103 {
return num(
int(x)%
int(y)); }
| const num operator& |
( |
const num & |
x, |
|
|
const num & |
y |
|
) |
| |
|
inline |
Definition at line 115 of file num.hh.
116 {
return num(
int(x)&
int(y)); }
| const num operator* |
( |
const num & |
x, |
|
|
const num & |
y |
|
) |
| |
|
inline |
Definition at line 96 of file num.hh.
References isfloat().
int isfloat(const num &n)
| const num operator+ |
( |
const num & |
x, |
|
|
const num & |
y |
|
) |
| |
|
inline |
Definition at line 90 of file num.hh.
References isfloat().
int isfloat(const num &n)
| const num operator- |
( |
const num & |
x, |
|
|
const num & |
y |
|
) |
| |
|
inline |
Definition at line 93 of file num.hh.
References isfloat().
int isfloat(const num &n)
| const num operator/ |
( |
const num & |
x, |
|
|
const num & |
y |
|
) |
| |
|
inline |
Definition at line 99 of file num.hh.
References isfloat().
int isfloat(const num &n)
| const num operator< |
( |
const num & |
x, |
|
|
const num & |
y |
|
) |
| |
|
inline |
| const num operator<< |
( |
const num & |
x, |
|
|
const num & |
y |
|
) |
| |
|
inline |
Definition at line 107 of file num.hh.
108 {
return num(
int(x)<<
int(y)); }
| const num operator<= |
( |
const num & |
x, |
|
|
const num & |
y |
|
) |
| |
|
inline |
| const num operator== |
( |
const num & |
x, |
|
|
const num & |
y |
|
) |
| |
|
inline |
| const num operator> |
( |
const num & |
x, |
|
|
const num & |
y |
|
) |
| |
|
inline |
| const num operator>= |
( |
const num & |
x, |
|
|
const num & |
y |
|
) |
| |
|
inline |
| const num operator>> |
( |
const num & |
x, |
|
|
const num & |
y |
|
) |
| |
|
inline |
Definition at line 110 of file num.hh.
111 {
return num(
int(x)>>
int(y)); }
| const num operator^ |
( |
const num & |
x, |
|
|
const num & |
y |
|
) |
| |
|
inline |
Definition at line 121 of file num.hh.
122 {
return num(
int(x)^
int(y)); }
| const num operator| |
( |
const num & |
x, |
|
|
const num & |
y |
|
) |
| |
|
inline |
Definition at line 118 of file num.hh.
119 {
return num(
int(x)|
int(y)); }