package neko
Available on macro, nekoPlatform-specific Neko Library. Provides some platform-specific functions for the Neko target, such as conversion from Haxe types to native types and vice-versa.
static inline bytesReference (s:String):BytesReturns bytes referencing the content of a string.
static getClasses ():DynamicReturns an object containing all compiled packages and classes.
static haxeToNeko (v:Dynamic):DynamicConverts a Haxe value to its Neko equivalent. Used to unwrap String and Arrays Objects into raw Neko values.
static load (lib:String, prim:String, nargs:Int):DynamicLoad and return a Neko primitive from a NDLL library.
static loadLazy (lib:String, prim:String, nargs:Int):Dynamicstatic localUnserialize (s:Bytes):DynamicUnserialize 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 nekoToHaxe (v:Dynamic):DynamicConverts a Neko value to its Haxe equivalent. Used for wrapping String and Arrays raw values into Haxe Objects.
static print (v:Dynamic):VoidPrint the specified value on the default output.
static println (v:Dynamic):VoidPrint the specified value on the default output followed by a newline character.
static rethrow (e:Dynamic):DynamicRethrow an exception. This is useful when manually filtering an exception in order to keep the previous exception stack.
static serialize (v:Dynamic):BytesSerialize 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 stringReference (b:Bytes):StringReturns a string referencing the data contains in bytes.
static unserialize (s:Bytes):DynamicUnserialize a string using native Neko serialization. See serialize.
© 2005–2016 Haxe Foundation
Licensed under a MIT license.
http://api.haxe.org/neko/Lib.html