MCPcopy Create free account
hub / github.com/HaxeFoundation/hxcpp / make

Method make

include/cpp/CppInt32__.h:27–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25 inline CppInt32__ &operator=(T inValue) { mValue = inValue; return *this; }
26
27 static inline CppInt32__ make(int a,int b) { return CppInt32__( (a<<16) | b ); }
28 static inline CppInt32__ ofInt(int a) { return CppInt32__( a ); }
29 static inline int toInt(CppInt32__ a) { __hxcpp_check_overflow(a); return a.mValue; }
30 static inline int toNativeInt(CppInt32__ a) { return a.mValue; }

Callers

nothing calls this directly

Calls 1

CppInt32__Class · 0.70

Tested by

no test coverage detected