Re: [Proposal] Overload | for booleans
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: [Proposal] Overload | for booleans
- From: Dirk Laurie <dirk.laurie@...>
- Date: 2015年7月29日 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?