public Varargs Next(LuaTable table, object index = null) { if (table == null) throw LuaRuntimeException.Create(Context, ExceptionMessage.INVOKE_BAD_ARGUMENT_GOT, "next", "table", "nil"); return table.Next(index); }
public static Varargs Next(LuaTable table, object index = null) { return table.Next(index); }