haXe API Documentation
Back | Index
class neko.Lib
Available in neko
static inline function bytesReference(s : String) : haxe.io.Bytes
Returns bytes referencing the content of a string.
static function getClasses() : Dynamic
Returns an object containing all compiled packages and classes.
static function haxeToNeko(v : Dynamic) : Dynamic
Converts a Neko value to its haXe equivalent. Used to unwrap String and Arrays Objects into raw Neko values.
static function load(lib : String, prim : String, nargs : Int) : Dynamic
Load and return a Neko primitive from a NDLL library.
static function loadLazy(lib : String, prim : String, nargs : Int) : Dynamic
static function localUnserialize(s : String) : Dynamic
Unserialize a string using native Neko serialization. See serialize. This function assume that all the serialized data was serialized with current module, even if the module name was different. This can happen if you are unserializing some data into mod_neko that was serialized on a different server using a different file path.
static function nekoToHaxe(v : Dynamic) : Dynamic
Converts a Neko value to its haXe equivalent. Used for wrapping String and Arrays raw values into haXe Objects.
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(e : Dynamic) : Dynamic
Rethrow an exception. This is useful when manually filtering an exception in order to keep the previous exception stack.
static function serialize(v : Dynamic) : String
Serialize using native Neko serialization. This will return a Binary string that can be stored for long term usage. The serialized data is optimized for speed and not for size.
static inline function stringReference(b : haxe.io.Bytes) : String
Returns a string referencing the data contains in bytes.
static function unserialize(s : String) : Dynamic
Unserialize a string using native Neko serialization. See serialize.
Back | Index