[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [Proposal] Overload | for booleans
- From: Dirk Laurie <dirk.laurie@...>
- Date: Wed, 29 Jul 2015 16:18:14 +0200
2015-07-29 15:56 GMT+02:00 Soni L. <fakedme@gmail.com>:
> Can we get true | false to be a thing?
debug.setmetatable(true,{
__bor = function(x,y)
assert (type(x)=='boolean' and type(y)=='boolean')
return x or y
end;
__band = function(x,y)
assert (type(x)=='boolean' and type(y)=='boolean')
return x and y
end;
})
I like that! But why do you call it a proposal?