lua-users home
lua-l archive

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


On 11/03/2020 04.16, Philippe Verdy wrote:> Nothing
> prevents also reindexing a table at any time using a new hashing
> function (or the same hashing function but with a new seed generated
> from the antropic source;

Moreover, Lua runtime can theoretically do it itself.
In a manner like garbage collection. Say when number of
detected collisions passed some threshold.

-- Martin