| 252 | } |
| 253 | |
| 254 | MathLib::value MathLib::value::add(int v) const |
| 255 | { |
| 256 | MathLib::value temp(*this); |
| 257 | if (temp.isInt()) |
| 258 | temp.mIntValue += v; |
| 259 | else |
| 260 | temp.mDoubleValue += v; |
| 261 | return temp; |
| 262 | } |
| 263 | |
| 264 | MathLib::value MathLib::value::shiftLeft(const MathLib::value &v) const |
| 265 | { |