Skip to content

Instantly share code, notes, and snippets.

View sharpobject's full-sized avatar

Robert Burke sharpobject

View GitHub Profile
@sharpobject
sharpobject / curry.lua
Created August 26, 2013 19:47
Curry things in lua! TODO: make this less terrible, or just don't use it, gosh.
local function dummy()end
local funcmt = getmetatable(dummy)
if not funcmt then
funcmt = {}
debug.setmetatable(dummy,funcmt)
end
funcmt.__index = funcmt.__index or {}
local type,select = type,select
assert(type(funcmt.__index) == "table")