lua-users home
lua-l archive

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


> Why is there no C API to realloc a full userdata? Is it just not
> common enough a need?

Because then Lua would have to "box" userdata. (That is, Lua would
do what you do not want to do, even for those that do not need it.)

-- Roberto