lua-users home
lua-l archive

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


> If backward compatibility of coercion arithmetic is not desired, these
> metamethods could be replaed to give arbitrary-precision arithmetic.

Very nice! You've reminded me that lbc does not handle __idiv. I'll
fix that soon.

However, you probably want

    for k,v in pairs(meta) do

instead of

    for k,v in pairs(bc) do

Otherwise, you'll put a lot of garbage in the string metatable.