aboutsummaryrefslogtreecommitdiff
path: root/doc/extensions.html
diff options
context:
space:
mode:
authorMike Pall <mike>2020-10-12 16:18:02 +0200
committerMike Pall <mike>2020-10-12 16:18:02 +0200
commit1d8b747c161db457e032a023ebbff511f5de5ec2 (patch)
tree7254328c720b104f5d5b4bd8321cfcb18c6fb6ce /doc/extensions.html
parent675e08cf069725a004284b4e1e67fbf0e8fcb4dd (diff)
parent050466552bf7eb8b7944aa52c93b45326ae14d7a (diff)
downloadluajit-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.html8
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>
75LuaJIT is fully upwards-compatible with Lua 5.1. It supports all 75LuaJIT 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">&raquo;</span>&nbsp;standard Lua
77library functions</a> and the full set of 77library 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">&raquo;</span>&nbsp;Lua/C API
79functions</a>. 79functions</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> &mdash; Bitwise operations</h3> 99<h3 id="bit"><tt>bit.*</tt> &mdash; Bitwise operations</h3>
100<p> 100<p>
101LuaJIT supports all bitwise operations as defined by 101LuaJIT 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">&raquo;</span>&nbsp;Lua BitOp</a>:
103</p> 103</p>
104<pre class="code"> 104<pre class="code">
105bit.tobit bit.tohex bit.bnot bit.band bit.bor bit.bxor 105bit.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>
109This module is a LuaJIT built-in &mdash; you don't need to download or 109This module is a LuaJIT built-in &mdash; you don't need to download or
110install Lua BitOp. The Lua BitOp site has full documentation for all 110install 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">&raquo;</span>&nbsp;Lua BitOp API functions</a>.
112The FFI adds support for 112The FFI adds support for
113<a href="ext_ffi_semantics.html#cdata_arith">64&nbsp;bit bitwise operations</a>, 113<a href="ext_ffi_semantics.html#cdata_arith">64&nbsp;bit bitwise operations</a>,
114using the same API functions. 114using the same API functions.