| 126 | cpp::Int64 __ToInt64() const HXCPP_OVERRIDE { return (cpp::Int64)mValue; } |
| 127 | |
| 128 | int __Compare(const hx::Object *inRHS) const HXCPP_OVERRIDE |
| 129 | { |
| 130 | double rval = inRHS->__ToDouble(); |
| 131 | if (rval==mValue) |
| 132 | return 0; |
| 133 | |
| 134 | return mValue < rval ? -1 : 1; |
| 135 | } |
| 136 | |
| 137 | |
| 138 | double mValue; |
nothing calls this directly
no test coverage detected