ArrayAccess - sonygod/luaxe-nlua GitHub Wiki
@:native("dfList") extern class DfList<T0> implements ArrayAccess<T0>
var bb :DfList<Int> = untyped (__lua__("newList(1)"));
bb.Add(2);
trace(bb.Count);
trace(bb.Contains(2));
trace(bb[0]);
@:native("dfList") extern class DfList<T0> implements ArrayAccess<T0>
var bb :DfList<Int> = untyped (__lua__("newList(1)"));
bb.Add(2);
trace(bb.Count);
trace(bb.Contains(2));
trace(bb[0]);