MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / operator !=

Function operator !=

include/Dynamic.h:153–160  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

151 }
152
153 bool operator != (const Dynamic &inRHS) const
154 {
155 // Comparing pointers fails in the case on Nan==Nan
156 //if (mPtr==inRHS.mPtr) return true;
157 if (!mPtr && !inRHS.mPtr) return false;
158 if (!mPtr || !inRHS.mPtr) return true;
159 return mPtr->__Compare(inRHS.mPtr)!=0;
160 }
161
162
163 bool operator == (const cpp::Variant &inRHS) const { return (*this) == Dynamic(inRHS); }

Callers

nothing calls this directly

Calls 4

IsNumericFunction · 0.85
IsBoolFunction · 0.85
DynamicFunction · 0.70
__CompareMethod · 0.45

Tested by

no test coverage detected