lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> 3. CONCAT VM instruction
> 
> This also respects __concat but does not call lua_concat.

Both OP_CONCAT and lua_concat call the same internal function
(luaV_concat). (In Lua, kernel code never calls API functions.)

-- Roberto