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

Function __hxcpp_println

include/hx/StdLibs.h:51–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49HXCPP_EXTERN_CLASS_ATTRIBUTES void __hxcpp_println_string(const String &inV);
50
51template<typename T> inline void __hxcpp_println(T inV)
52{
53 Dynamic d(inV);
54 __hxcpp_println_string(d);
55}
56// Specialization that does not need dynamic boxing
57template<> inline void __hxcpp_println(String inV)
58{

Callers

nothing calls this directly

Calls 1

__hxcpp_println_stringFunction · 0.85

Tested by

no test coverage detected