[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Plans for version 5.0?
- From: Roberto Ierusalimschy <roberto@...>
- Date: Tue, 22 Oct 2002 14:45:19 -0200
> 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