| 183 | |
| 184 | template<typename T> |
| 185 | inline cpp::Variant operator - (const T &inRHS) const |
| 186 | { |
| 187 | if (::cpp::isIntType(inRHS) && isInt() ) |
| 188 | return asInt() - (int)inRHS; |
| 189 | return asDouble() - (double)inRHS; |
| 190 | } |
| 191 | |
| 192 | template<typename T> |
| 193 | inline cpp::Variant operator * (const T &inRHS) const |
nothing calls this directly
no test coverage detected