package lua; /** This library provides generic functions for table manipulation. **/ @:native("_hx_table") extern class TableTools { public static function pack(args:haxe.extern.Rest) : Table; public static function unpack(args:lua.Table, ?min : Int, ?max : Int) : Dynamic; public static function maxn(t:Table.AnyTable) : Int; public static function __init__() : Void { untyped __define_feature__("use._hx_table", null); } }