# HG changeset patch
# User almikes@aol.com
# Date 1417570969 0
# Node ID aee281298267ebb167274d96729b82bf0b38e4cc
# Parent 0b7f8aed3c5e9c4b9ea07b7a257cbdf310bc3f00
Documented the following functions: band, bnot, bor.
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.
+=== band(value1, value2) ===
+Returns the bitwise logical AND of `value1` and `value2`.
+
+=== bor(value1, value2) ===
+Returns the bitwise logical OR of `value1` and `value2`.
+
+=== bnot(value) ===
+Returns the bitwise logical NOT of `value`.
+
+
== Debugging Functions ==
=== !ParseCommand(string) ===