Next() private method

private Next ( object index = null ) : Varargs
index object
return Varargs
Esempio n. 1
0
        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);
        }
Esempio n. 2
0
 public static Varargs Next(LuaTable table, object index = null)
 {
     return table.Next(index);
 }