lua-users home
lua-l archive

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


> similar problem: I needed to access a table tt using the contents of a 
> table tk as key, so I serialized tk with its keys ordered and used the 
> resulting string as key for tt.

Using a message digest for the table contents (ordered keys + values)
would probably work just fine. I can't see how to avoid ordering the
keys, though.