haXe API Documentation
Back | Index
class cpp.Lib
Available in cpp
static function haxeToNeko(v : Dynamic) : Dynamic
This function is used to make porting from neko to cpp easy. It does not need to do anything because the c-code can work with any Dynamic
static function load(lib : String, prim : String, nargs : Int) : Dynamic
Load and return a Cpp primitive from a DLL library.
static function loadLazy(lib : String, prim : String, nargs : Int) : Dynamic
Tries to load, and always returns a valid function, but the function may throw if called.
static function nekoToHaxe(v : Dynamic) : Dynamic
This function is used to make porting from neko to cpp easy. It does not need to do anything because the c-code can work with any Dynamic
static function print(v : Dynamic) : Void
Print the specified value on the default output.
static function println(v : Dynamic) : Void
Print the specified value on the default output followed by a newline character.
static function rethrow(inExp : Dynamic) : Void
static function stringReference(inExp : Dynamic) : Void
Back | Index