diff options
Diffstat (limited to 'doc/extensions.html')
-rw-r--r-- | doc/extensions.html | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/doc/extensions.html b/doc/extensions.html index 25764198..cf57e0e8 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">»</span></a> | 39 | <a href="https://luajit.org/download.html">Download <span class="ext">»</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> |
@@ -62,25 +62,20 @@ td.excinterop { | |||
62 | </li></ul> | 62 | </li></ul> |
63 | </li><li> | 63 | </li><li> |
64 | <a href="status.html">Status</a> | 64 | <a href="status.html">Status</a> |
65 | <ul><li> | ||
66 | <a href="changes.html">Changes</a> | ||
67 | </li></ul> | ||
68 | </li><li> | 65 | </li><li> |
69 | <a href="faq.html">FAQ</a> | 66 | <a href="faq.html">FAQ</a> |
70 | </li><li> | 67 | </li><li> |
71 | <a href="http://luajit.org/performance.html">Performance <span class="ext">»</span></a> | ||
72 | </li><li> | ||
73 | <a href="http://wiki.luajit.org/">Wiki <span class="ext">»</span></a> | 68 | <a href="http://wiki.luajit.org/">Wiki <span class="ext">»</span></a> |
74 | </li><li> | 69 | </li><li> |
75 | <a href="http://luajit.org/list.html">Mailing List <span class="ext">»</span></a> | 70 | <a href="https://luajit.org/list.html">Mailing List <span class="ext">»</span></a> |
76 | </li></ul> | 71 | </li></ul> |
77 | </div> | 72 | </div> |
78 | <div id="main"> | 73 | <div id="main"> |
79 | <p> | 74 | <p> |
80 | 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 |
81 | <a href="http://www.lua.org/manual/5.1/manual.html#5"><span class="ext">»</span> standard Lua | 76 | <a href="https://www.lua.org/manual/5.1/manual.html#5">standard Lua |
82 | library functions</a> and the full set of | 77 | library functions</a> and the full set of |
83 | <a href="http://www.lua.org/manual/5.1/manual.html#3"><span class="ext">»</span> Lua/C API | 78 | <a href="https://www.lua.org/manual/5.1/manual.html#3">Lua/C API |
84 | functions</a>. | 79 | functions</a>. |
85 | </p> | 80 | </p> |
86 | <p> | 81 | <p> |
@@ -104,7 +99,7 @@ LuaJIT comes with several built-in extension modules: | |||
104 | <h3 id="bit"><tt>bit.*</tt> — Bitwise operations</h3> | 99 | <h3 id="bit"><tt>bit.*</tt> — Bitwise operations</h3> |
105 | <p> | 100 | <p> |
106 | LuaJIT supports all bitwise operations as defined by | 101 | LuaJIT supports all bitwise operations as defined by |
107 | <a href="http://bitop.luajit.org"><span class="ext">»</span> Lua BitOp</a>: | 102 | <a href="https://bitop.luajit.org">Lua BitOp</a>: |
108 | </p> | 103 | </p> |
109 | <pre class="code"> | 104 | <pre class="code"> |
110 | 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 |
@@ -113,7 +108,7 @@ bit.lshift bit.rshift bit.arshift bit.rol bit.ror bit.bswap | |||
113 | <p> | 108 | <p> |
114 | 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 |
115 | 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 |
116 | <a href="http://bitop.luajit.org/api.html"><span class="ext">»</span> Lua BitOp API functions</a>. | 111 | <a href="https://bitop.luajit.org/api.html">Lua BitOp API functions</a>. |
117 | The FFI adds support for | 112 | The FFI adds support for |
118 | <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>, |
119 | using the same API functions. | 114 | using the same API functions. |