Next() private method

private Next ( object index = null ) : Varargs
index object
return Varargs
コード例 #1
0
ファイル: BaseLibrary.cs プロジェクト: SPARTAN563/IronLua
        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);
        }
コード例 #2
0
ファイル: BaseLibrary.cs プロジェクト: ericmj/IronLua
 public static Varargs Next(LuaTable table, object index = null)
 {
     return table.Next(index);
 }