[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Boolean matters
- From: Dirk Laurie <dirk.laurie@...>
- Date: Sat, 1 Dec 2012 21:50:13 +0200
1. To convert a Lua value to boolean:
bool = not not x
2. Exclusive or of Lua values x and y
xor = not x == not y
Anything better?