이 모듈에 대한 설명문서는 모듈:table/listToSet/설명문서에서 만들 수 있습니다
--[[
{ "a", "b", "c" } -> { ["a"] = true, ["b"] = true, ["c"] = true }
--]]
return function(t)
-- checkType("listToSet", 1, t, "table")
local set = {}
for _, item in ipairs(t) do
set[item] = true
end
return set
end