Estoy desarrollando una función optimizada simple JSON. Lua usa tablas para representar matrices pero en JSON necesito reconocerlas. El código siguiente se utiliza:¿Cómo puedo saber si una tabla es una matriz?
t={
a="hi",
b=100
}
function table2json(t,formatted)
if type(t)~="table" then return nil,"Parameter is not a table. It is: "..type(t) end
local ret=""--return value
local lvl=0 --indentation level
local INDENT=" " --OPTION: the characters put in front of every line for indentation
function addToRet(str) if formatted then ret=ret..string.rep(INDENT,lvl)..str.."\n" else ret=ret..str end end
addToRet("{")
lvl=1
for k,v in pairs(t) do
local typeof=type(v)
if typeof=="string" then
addToRet(k..":\""..v.."\"")
elseif typeof=="number" then
addToRet(k..":"..v)
end
end
lvl=0
addToRet("}")
return ret
end
print(table2json(t,true))
Como se puede ver en JSON referencia a un object
es lo que se llama un table
en Lua y es diferente de un array
.
La pregunta es ¿cómo puedo detectar si una tabla se está utilizando como una matriz?
- Una solución, por supuesto, es pasar por todos los pares y ver si solo tienen claves numéricas consecutivas, pero eso no es lo suficientemente rápido.
- Otra solución es poner una bandera en la tabla que dice que es una matriz, no un objeto.
¿Alguna solución más simple/más inteligente?
Ver: http://stackoverflow.com/questions/6077006/how-can-i-check-if-a-lua-table-contains-only-sequential-numeric-indices/6080274#6080274 – BMitch