多键元组以映射Lua中的多值元组

时间:2019-03-07 06:07:58

标签: lua

Lua中是否存在一个支持从元组到元组的映射的库?我有一个键{a,b,c}映射到值{c,d,e} 有诸如http://lua-users.org/wiki/MultipleKeyIndexing之类的库,用于多键,但在值是元组的地方则没有。

1 个答案:

答案 0 :(得分:2)

这是使用Egor的建议通过字符串串联生成密钥的一种方法。对表t进行自己的简单插入和获取方法。

local a, b, c = 10, 20, 30
local d, e, f = 100, 200, 300

local t = {}
t.key = function (k)
  local key = ""
  for _,v in ipairs(k) do
     key = key .. tostring(v) .. ";"
   end
   return key
end
t.set = function (k, v)
  local key = t.key(k)
  t[key] = v
end
t.get = function (k)
  local key = t.key(k)
  return t[key]
end

t.set ({a, b, c}, {d, e, f})           -- using variables
t.set ({40, 50, 60}, {400, 500, 600})  -- using constants

local w = t.get ({a, b, c})               -- using variables
local x = t.get ({40, 50, 60})            -- using constants

print(w[1], w[2], w[3])                   -- 100    200    300
print(x[1], x[2], x[3])                   -- 400    500    600