| 195 | bool operator !() { return ! mObject->__GetItem(mIndex)->__ToInt(); } |
| 196 | int operator ~() { return ~ mObject->__GetItem(mIndex)->__ToInt(); } |
| 197 | double operator -() { return - mObject->__GetItem(mIndex)->__ToDouble(); } |
| 198 | |
| 199 | inline bool operator==(const null &) const { return !mObject; } |
| 200 | inline bool operator!=(const null &) const { return mObject; } |
nothing calls this directly
no test coverage detected