diff options
author | Lejo <Lejo_1@web.de> | 2021-11-26 19:31:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-26 19:31:05 +0100 |
commit | b9051386ae296a6112383725bc8bfcd96dc9a226 (patch) | |
tree | e3dbb8998a73e19b6b0bc6c24d7d9f3515ed6ea2 /doc | |
parent | 7a1464d783742512fdc6e0a083ffadd0ce63c1b4 (diff) | |
download | minetest-b9051386ae296a6112383725bc8bfcd96dc9a226.tar.gz minetest-b9051386ae296a6112383725bc8bfcd96dc9a226.tar.bz2 minetest-b9051386ae296a6112383725bc8bfcd96dc9a226.zip |
Add Lua bitop library (#9847)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lua_api.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/lua_api.txt b/doc/lua_api.txt index 36db23b6f..0a63642af 100644 --- a/doc/lua_api.txt +++ b/doc/lua_api.txt @@ -8825,3 +8825,10 @@ Used by `minetest.register_authentication_handler`. -- Returns an iterator (use with `for` loops) for all player names -- currently in the auth database } + +Bit Library +----------- + +Functions: bit.tobit, bit.tohex, bit.bnot, bit.band, bit.bor, bit.bxor, bit.lshift, bit.rshift, bit.arshift, bit.rol, bit.ror, bit.bswap + +See http://bitop.luajit.org/ for advanced information. |