diff -r 0b7f8aed3c5e -r aee281298267 LuaAPI.wiki --- a/LuaAPI.wiki Wed Dec 03 01:28:15 2014 +0000 +++ b/LuaAPI.wiki Wed Dec 03 01:42:49 2014 +0000 @@ -865,6 +865,16 @@ The result is an integer and has the value of the first parameter (integer) divided by the second parameter (integer), rounded towards zero. </blockquote> +=== <tt>band(value1, value2)</tt> === +Returns the bitwise logical AND of `value1` and `value2`. + +=== <tt>bor(value1, value2)</tt> === +Returns the bitwise logical OR of `value1` and `value2`. + +=== <tt>bnot(value)</tt> === +Returns the bitwise logical NOT of `value`. + + == Debugging Functions == === <tt>!ParseCommand(string)</tt> ===