[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Possible to add methods in Lua to metatables defined in C?
- From: steve donovan <steve.j.donovan@...>
- Date: Thu, 3 May 2012 19:26:07 +0200
On Thu, May 3, 2012 at 5:46 PM, Andrew Budd <andrew.budd@gmail.com> wrote:
> What I would like to do is add additional methods to those metatables from
> Lua.
Totally possible - it's a table, and you can add things to it.
> mt = getmetatable(io.stdout)
> mt.read2 = function(self) return self:read(),self:read() end