| 67 | cpp::Int64 __ToInt64() const HXCPP_OVERRIDE { return mValue; } |
| 68 | |
| 69 | int __Compare(const hx::Object *inRHS) const HXCPP_OVERRIDE |
| 70 | { |
| 71 | double diff = mValue - inRHS->__ToDouble(); |
| 72 | return diff < 0 ? -1 : diff==0 ? 0 : 1; |
| 73 | } |
| 74 | |
| 75 | |
| 76 | int mValue; |
nothing calls this directly
no test coverage detected