aboutsummaryrefslogtreecommitdiff
path: root/doc/extensions.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/extensions.html')
-rw-r--r--doc/extensions.html19
1 files changed, 7 insertions, 12 deletions
diff --git a/doc/extensions.html b/doc/extensions.html
index 25d2f7fd..b36e2855 100644
--- a/doc/extensions.html
+++ b/doc/extensions.html
@@ -27,7 +27,7 @@ td.excinterop {
27</head> 27</head>
28<body> 28<body>
29<div id="site"> 29<div id="site">
30<a href="http://luajit.org"><span>Lua<span id="logo">JIT</span></span></a> 30<a href="https://luajit.org"><span>Lua<span id="logo">JIT</span></span></a>
31</div> 31</div>
32<div id="head"> 32<div id="head">
33<h1>Extensions</h1> 33<h1>Extensions</h1>
@@ -36,7 +36,7 @@ td.excinterop {
36<ul><li> 36<ul><li>
37<a href="luajit.html">LuaJIT</a> 37<a href="luajit.html">LuaJIT</a>
38<ul><li> 38<ul><li>
39<a href="http://luajit.org/download.html">Download <span class="ext">&raquo;</span></a> 39<a href="https://luajit.org/download.html">Download <span class="ext">&raquo;</span></a>
40</li><li> 40</li><li>
41<a href="install.html">Installation</a> 41<a href="install.html">Installation</a>
42</li><li> 42</li><li>
@@ -60,25 +60,20 @@ td.excinterop {
60</li></ul> 60</li></ul>
61</li><li> 61</li><li>
62<a href="status.html">Status</a> 62<a href="status.html">Status</a>
63<ul><li>
64<a href="changes.html">Changes</a>
65</li></ul>
66</li><li> 63</li><li>
67<a href="faq.html">FAQ</a> 64<a href="faq.html">FAQ</a>
68</li><li> 65</li><li>
69<a href="http://luajit.org/performance.html">Performance <span class="ext">&raquo;</span></a>
70</li><li>
71<a href="http://wiki.luajit.org/">Wiki <span class="ext">&raquo;</span></a> 66<a href="http://wiki.luajit.org/">Wiki <span class="ext">&raquo;</span></a>
72</li><li> 67</li><li>
73<a href="http://luajit.org/list.html">Mailing List <span class="ext">&raquo;</span></a> 68<a href="https://luajit.org/list.html">Mailing List <span class="ext">&raquo;</span></a>
74</li></ul> 69</li></ul>
75</div> 70</div>
76<div id="main"> 71<div id="main">
77<p> 72<p>
78LuaJIT is fully upwards-compatible with Lua 5.1. It supports all 73LuaJIT is fully upwards-compatible with Lua 5.1. It supports all
79<a href="http://www.lua.org/manual/5.1/manual.html#5"><span class="ext">&raquo;</span>&nbsp;standard Lua 74<a href="https://www.lua.org/manual/5.1/manual.html#5">standard Lua
80library functions</a> and the full set of 75library functions</a> and the full set of
81<a href="http://www.lua.org/manual/5.1/manual.html#3"><span class="ext">&raquo;</span>&nbsp;Lua/C API 76<a href="https://www.lua.org/manual/5.1/manual.html#3">Lua/C API
82functions</a>. 77functions</a>.
83</p> 78</p>
84<p> 79<p>
@@ -102,7 +97,7 @@ LuaJIT comes with several built-in extension modules:
102<h3 id="bit"><tt>bit.*</tt> &mdash; Bitwise operations</h3> 97<h3 id="bit"><tt>bit.*</tt> &mdash; Bitwise operations</h3>
103<p> 98<p>
104LuaJIT supports all bitwise operations as defined by 99LuaJIT supports all bitwise operations as defined by
105<a href="http://bitop.luajit.org"><span class="ext">&raquo;</span>&nbsp;Lua BitOp</a>: 100<a href="https://bitop.luajit.org">Lua BitOp</a>:
106</p> 101</p>
107<pre class="code"> 102<pre class="code">
108bit.tobit bit.tohex bit.bnot bit.band bit.bor bit.bxor 103bit.tobit bit.tohex bit.bnot bit.band bit.bor bit.bxor
@@ -111,7 +106,7 @@ bit.lshift bit.rshift bit.arshift bit.rol bit.ror bit.bswap
111<p> 106<p>
112This module is a LuaJIT built-in &mdash; you don't need to download or 107This module is a LuaJIT built-in &mdash; you don't need to download or
113install Lua BitOp. The Lua BitOp site has full documentation for all 108install Lua BitOp. The Lua BitOp site has full documentation for all
114<a href="http://bitop.luajit.org/api.html"><span class="ext">&raquo;</span>&nbsp;Lua BitOp API functions</a>. 109<a href="https://bitop.luajit.org/api.html">Lua BitOp API functions</a>.
115</p> 110</p>
116<p> 111<p>
117Please make sure to <tt>require</tt> the module before using any of 112Please make sure to <tt>require</tt> the module before using any of