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

Method Pointer

include/cpp/Pointer.h:210–210  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

208 T *ptr;
209
210 inline Pointer( ) : ptr(0) { }
211 inline Pointer( const Pointer &inRHS ) : ptr(inRHS.ptr) { }
212 inline Pointer( const Dynamic &inRHS) { ptr = inRHS==null()?0: (T*)inRHS->__GetHandle(); }
213 inline Pointer( const null &inRHS ) : ptr(0) { }

Callers 3

encodeMethod · 0.45
__hxcpp_memory_memsetFunction · 0.45
ofArrayMethod · 0.45

Calls 3

asObjectMethod · 0.80
nullClass · 0.50
__GetHandleMethod · 0.45

Tested by

no test coverage detected