lua-users home
lua-l archive

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


> On the other hand the situation may be reversed:
> every tool or library using array sorting would have to
> copy-paste the sorting routine and that is bloating the code
> (which isn't kinda Lua spirit).

You got that wrong. The Lua style was always: do it yourself 'cause
the core is nonbloated.
Loading table.sort through the Lua API and lua_call it, is simple enough.