lua-users home
lua-l archive

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


> Perhaps Lua 5 might need string buffers (growable buffer of
> characters), so that string manipulation becomes more efficient. I
> read somewhere (but forgot the URL) that Lua performs very well (w.r.t
> other scripting languages) except for string manipulation. But I may
> be wrong!

It is quite easy to implement a string buffer in Lua itself; see 
http://www.bagley.org/~doug/shootout/bench/strcat/strcat.lua

-- Roberto