diff options
author | Mike Pall <mike> | 2020-10-12 16:18:02 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2020-10-12 16:18:02 +0200 |
commit | 1d8b747c161db457e032a023ebbff511f5de5ec2 (patch) | |
tree | 7254328c720b104f5d5b4bd8321cfcb18c6fb6ce /doc/extensions.html | |
parent | 675e08cf069725a004284b4e1e67fbf0e8fcb4dd (diff) | |
parent | 050466552bf7eb8b7944aa52c93b45326ae14d7a (diff) | |
download | luajit-1d8b747c161db457e032a023ebbff511f5de5ec2.tar.gz luajit-1d8b747c161db457e032a023ebbff511f5de5ec2.tar.bz2 luajit-1d8b747c161db457e032a023ebbff511f5de5ec2.zip |
Merge branch 'master' into v2.1
Diffstat (limited to 'doc/extensions.html')
-rw-r--r-- | doc/extensions.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/extensions.html b/doc/extensions.html index 68193187..5b7bb58f 100644 --- a/doc/extensions.html +++ b/doc/extensions.html | |||
@@ -73,9 +73,9 @@ td.excinterop { | |||
73 | <div id="main"> | 73 | <div id="main"> |
74 | <p> | 74 | <p> |
75 | LuaJIT is fully upwards-compatible with Lua 5.1. It supports all | 75 | LuaJIT is fully upwards-compatible with Lua 5.1. It supports all |
76 | <a href="https://www.lua.org/manual/5.1/manual.html#5">standard Lua | 76 | <a href="https://www.lua.org/manual/5.1/manual.html#5"><span class="ext">»</span> standard Lua |
77 | library functions</a> and the full set of | 77 | library functions</a> and the full set of |
78 | <a href="https://www.lua.org/manual/5.1/manual.html#3">Lua/C API | 78 | <a href="https://www.lua.org/manual/5.1/manual.html#3"><span class="ext">»</span> Lua/C API |
79 | functions</a>. | 79 | functions</a>. |
80 | </p> | 80 | </p> |
81 | <p> | 81 | <p> |
@@ -99,7 +99,7 @@ LuaJIT comes with several built-in extension modules: | |||
99 | <h3 id="bit"><tt>bit.*</tt> — Bitwise operations</h3> | 99 | <h3 id="bit"><tt>bit.*</tt> — Bitwise operations</h3> |
100 | <p> | 100 | <p> |
101 | LuaJIT supports all bitwise operations as defined by | 101 | LuaJIT supports all bitwise operations as defined by |
102 | <a href="https://bitop.luajit.org">Lua BitOp</a>: | 102 | <a href="https://bitop.luajit.org"><span class="ext">»</span> Lua BitOp</a>: |
103 | </p> | 103 | </p> |
104 | <pre class="code"> | 104 | <pre class="code"> |
105 | bit.tobit bit.tohex bit.bnot bit.band bit.bor bit.bxor | 105 | bit.tobit bit.tohex bit.bnot bit.band bit.bor bit.bxor |
@@ -108,7 +108,7 @@ bit.lshift bit.rshift bit.arshift bit.rol bit.ror bit.bswap | |||
108 | <p> | 108 | <p> |
109 | This module is a LuaJIT built-in — you don't need to download or | 109 | This module is a LuaJIT built-in — you don't need to download or |
110 | install Lua BitOp. The Lua BitOp site has full documentation for all | 110 | install Lua BitOp. The Lua BitOp site has full documentation for all |
111 | <a href="https://bitop.luajit.org/api.html">Lua BitOp API functions</a>. | 111 | <a href="https://bitop.luajit.org/api.html"><span class="ext">»</span> Lua BitOp API functions</a>. |
112 | The FFI adds support for | 112 | The FFI adds support for |
113 | <a href="ext_ffi_semantics.html#cdata_arith">64 bit bitwise operations</a>, | 113 | <a href="ext_ffi_semantics.html#cdata_arith">64 bit bitwise operations</a>, |
114 | using the same API functions. | 114 | using the same API functions. |