|
...
version that handles two different [{}] keys as equivalent...For the archives (and the sharp debugging eyes of lua-l), here's a
> t0 = {1, 2, 3}
> t1 = {1, 2, 3}
> t2 = {1, 2, 3}
> return table_eq({[t0] = t1, [t1] = t2, [t2] = t1}, {[t0] = t2, [t2] = t1, [t2] = t2})
false
-- e