123456789101112131415 |
- package lua;
- /**
- This library provides generic functions for table manipulation.
- **/
- @:native("_hx_table")
- extern class TableTools {
- public static function pack<T>(args:haxe.extern.Rest<T>) : Table<Int,T>;
- public static function unpack<Int,V>(args:lua.Table<Int,V>, ?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);
- }
- }
|