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 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">»</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> |
@@ -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">»</span></a> | ||
70 | </li><li> | ||
71 | <a href="http://wiki.luajit.org/">Wiki <span class="ext">»</span></a> | 66 | <a href="http://wiki.luajit.org/">Wiki <span class="ext">»</span></a> |
72 | </li><li> | 67 | </li><li> |
73 | <a href="http://luajit.org/list.html">Mailing List <span class="ext">»</span></a> | 68 | <a href="https://luajit.org/list.html">Mailing List <span class="ext">»</span></a> |
74 | </li></ul> | 69 | </li></ul> |
75 | </div> | 70 | </div> |
76 | <div id="main"> | 71 | <div id="main"> |
77 | <p> | 72 | <p> |
78 | LuaJIT is fully upwards-compatible with Lua 5.1. It supports all | 73 | LuaJIT 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">»</span> standard Lua | 74 | <a href="https://www.lua.org/manual/5.1/manual.html#5">standard Lua |
80 | library functions</a> and the full set of | 75 | library functions</a> and the full set of |
81 | <a href="http://www.lua.org/manual/5.1/manual.html#3"><span class="ext">»</span> Lua/C API | 76 | <a href="https://www.lua.org/manual/5.1/manual.html#3">Lua/C API |
82 | functions</a>. | 77 | functions</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> — Bitwise operations</h3> | 97 | <h3 id="bit"><tt>bit.*</tt> — Bitwise operations</h3> |
103 | <p> | 98 | <p> |
104 | LuaJIT supports all bitwise operations as defined by | 99 | LuaJIT supports all bitwise operations as defined by |
105 | <a href="http://bitop.luajit.org"><span class="ext">»</span> 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"> |
108 | bit.tobit bit.tohex bit.bnot bit.band bit.bor bit.bxor | 103 | bit.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> |
112 | This module is a LuaJIT built-in — you don't need to download or | 107 | This module is a LuaJIT built-in — you don't need to download or |
113 | install Lua BitOp. The Lua BitOp site has full documentation for all | 108 | install Lua BitOp. The Lua BitOp site has full documentation for all |
114 | <a href="http://bitop.luajit.org/api.html"><span class="ext">»</span> 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> |
117 | Please make sure to <tt>require</tt> the module before using any of | 112 | Please make sure to <tt>require</tt> the module before using any of |