otable: remove

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-04-11 14:17:46 +02:00
parent 81b46f9694
commit 834a608999
1 changed files with 0 additions and 38 deletions

View File

@ -1,38 +0,0 @@
----------------------------------------------------------------------------
-- @author Julien Danjou &lt;julien@danjou.info&gt;
-- @copyright 2009 Julien Danjou
-- @release @AWESOME_VERSION@
----------------------------------------------------------------------------
local setmetatable = setmetatable
local pairs = pairs
local rawset = rawset
--- Special object table
module("otable")
local function newindex(t, k, v)
for tk, tv in pairs(t) do
if tk == k then
rawset(t, tk, v)
return
end
end
rawset(t, k, v)
end
local function index(t, k)
for tk, tv in pairs(t) do
if tk == k then
return tv
end
end
end
local function new()
return setmetatable({}, { __newindex = newindex, __index = index })
end
setmetatable(_M, { __call = new })
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=80