Re: Number 2 String( LUA_NOCVTN2S ) and numbers and concat...
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: Number 2 String( LUA_NOCVTN2S ) and numbers and concat...
- From: Roberto Ierusalimschy <roberto@...>
- Date: 2015年3月27日 09:23:21 -0300
> 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