Documented the following functions: band, bnot, bor.
authoralmikes@aol.com
Wed, 03 Dec 2014 01:42:49 +0000
changeset 401 aee281298267
parent 400 0b7f8aed3c5e
child 402 1e7586c110f6
Documented the following functions: band, bnot, bor.
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> ===