| 132 | |
| 133 | |
| 134 | int Compare(const Dynamic &inRHS) const |
| 135 | { |
| 136 | if (mPtr==0) return inRHS.mPtr==0 ? 0 : -1; |
| 137 | if (inRHS.mPtr==0) return -1; |
| 138 | return mPtr->__Compare(inRHS.mPtr); |
| 139 | } |
| 140 | |
| 141 | bool operator==(const null &inRHS) const { return mPtr==0; } |
| 142 | bool operator!=(const null &inRHS) const { return mPtr!=0; } |
no test coverage detected