lua-users home
lua-l archive

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


On Thu, Dec 4, 2008 at 4:09 AM, Luiz Henrique de Figueiredo
<lhf@tecgraf.puc-rio.br> wrote:
> Following the recent discussion about table.concat, here is some code that
> supports the use of tables as ropes. It provides a single function "unrope"
> which takes a rope (a table containing strings and similar subtables) and
> concats it into a single string, optionally with delimiters.
> Enjoy. All feedback welcome.
> --lhf
>

And another spin on ropes:

 http://lua-users.org/wiki/LuaRopes

It uses table.concat, maybe it would be faster with unrope.

Sam