| 96 | int __ToInt() const HXCPP_OVERRIDE { return mValue; } |
| 97 | |
| 98 | int __Compare(const hx::Object *inRHS) const HXCPP_OVERRIDE |
| 99 | { |
| 100 | double diff = (double)mValue - inRHS->__ToDouble(); |
| 101 | return diff < 0 ? -1 : diff==0 ? 0 : 1; |
| 102 | } |
| 103 | |
| 104 | |
| 105 | bool mValue; |
nothing calls this directly
no test coverage detected