restydoc: updated the bundled version of the LuaJIT docs to the latest.

pull/417/head v1.13.6.2
Yichun Zhang (agentzh) 7 years ago
parent 4f0980829a
commit 116b8fe20d

@ -196,6 +196,6 @@ Copyright E<copy> 2005-2017 Mike Pall E<middot> Contact
#Pod::HTML2Pod conversion notes: #Pod::HTML2Pod conversion notes:
#From file luajit.html #From file luajit.html
# 8082 bytes of input # 8082 bytes of input
#Sat May 13 16:35:32 2017 agentzh #Mon May 14 13:19:16 2018 agentzh
# No a_name switch not specified, so will not try to render <a name='...'> # No a_name switch not specified, so will not try to render <a name='...'>
# No a_href switch not specified, so will not try to render <a href='...'> # No a_href switch not specified, so will not try to render <a href='...'>

@ -82,6 +82,6 @@ Copyright E<copy> 2005-2017 Mike Pall E<middot> Contact
#Pod::HTML2Pod conversion notes: #Pod::HTML2Pod conversion notes:
#From file contact.html #From file contact.html
# 2989 bytes of input # 2989 bytes of input
#Sat May 13 16:35:32 2017 agentzh #Mon May 14 13:19:15 2018 agentzh
# No a_name switch not specified, so will not try to render <a name='...'> # No a_name switch not specified, so will not try to render <a name='...'>
# No a_href switch not specified, so will not try to render <a href='...'> # No a_href switch not specified, so will not try to render <a href='...'>

@ -82,8 +82,8 @@ second argument is either C<0> or a stack index (similar to the other
Lua/C API functions). Lua/C API functions).
The third argument specifies the mode, which is 'or'ed with a flag. The The third argument specifies the mode, which is 'or'ed with a flag. The
flag can be C<LUAJIT_MODE_OFF> to turn a feature on, C<LUAJIT_MODE_ON> flag can be C<LUAJIT_MODE_OFF> to turn a feature off, C<LUAJIT_MODE_ON>
to turn a feature off, or C<LUAJIT_MODE_FLUSH> to flush cached code. to turn a feature on, or C<LUAJIT_MODE_FLUSH> to flush cached code.
The following modes are defined: The following modes are defined:
@ -170,7 +170,7 @@ Copyright E<copy> 2005-2017 Mike Pall E<middot> Contact
#Pod::HTML2Pod conversion notes: #Pod::HTML2Pod conversion notes:
#From file ext_c_api.html #From file ext_c_api.html
# 6042 bytes of input # 6042 bytes of input
#Sat May 13 16:35:32 2017 agentzh #Mon May 14 13:19:15 2018 agentzh
# No a_name switch not specified, so will not try to render <a name='...'> # No a_name switch not specified, so will not try to render <a name='...'>
# No a_href switch not specified, so will not try to render <a href='...'> # No a_href switch not specified, so will not try to render <a href='...'>
# Deleting phrasal "code" element (`tt_18) because it has super-phrasal elements (`br_3) as children. # Deleting phrasal "code" element (`tt_18) because it has super-phrasal elements (`br_3) as children.

@ -280,6 +280,6 @@ Copyright E<copy> 2005-2017 Mike Pall E<middot> Contact
#Pod::HTML2Pod conversion notes: #Pod::HTML2Pod conversion notes:
#From file ext_ffi.html #From file ext_ffi.html
# 10336 bytes of input # 10336 bytes of input
#Sat May 13 16:35:32 2017 agentzh #Mon May 14 13:19:16 2018 agentzh
# No a_name switch not specified, so will not try to render <a name='...'> # No a_name switch not specified, so will not try to render <a name='...'>
# No a_href switch not specified, so will not try to render <a href='...'> # No a_href switch not specified, so will not try to render <a href='...'>

@ -495,7 +495,7 @@ Copyright E<copy> 2005-2017 Mike Pall E<middot> Contact
#Pod::HTML2Pod conversion notes: #Pod::HTML2Pod conversion notes:
#From file ext_ffi_api.html #From file ext_ffi_api.html
# 21471 bytes of input # 21471 bytes of input
#Sat May 13 16:35:32 2017 agentzh #Mon May 14 13:19:16 2018 agentzh
# No a_name switch not specified, so will not try to render <a name='...'> # No a_name switch not specified, so will not try to render <a name='...'>
# No a_href switch not specified, so will not try to render <a href='...'> # No a_href switch not specified, so will not try to render <a href='...'>
# Deleting phrasal "code" element (`tt_157) because it has super-phrasal elements (`br_3, `br_4) as children. # Deleting phrasal "code" element (`tt_157) because it has super-phrasal elements (`br_3, `br_4) as children.

@ -1019,10 +1019,10 @@ not mix this up: e.g. passing C<"int"> as a string doesn't work in
place of a type, you'd need to use C<ffi.typeof("int")> instead. place of a type, you'd need to use C<ffi.typeof("int")> instead.
The main use for parameterized types are libraries implementing The main use for parameterized types are libraries implementing
abstract data types (E<rchevron> example), similar to what can be abstract data types (example), similar to what can be achieved with C++
achieved with C++ template metaprogramming. Another use case are template metaprogramming. Another use case are derived types of
derived types of anonymous structs, which avoids pollution of the anonymous structs, which avoids pollution of the global struct
global struct namespace. namespace.
Please note that parameterized types are a nice tool and indispensable Please note that parameterized types are a nice tool and indispensable
for certain use cases. But you'll want to use them sparingly in regular for certain use cases. But you'll want to use them sparingly in regular
@ -1379,7 +1379,7 @@ Copyright E<copy> 2005-2017 Mike Pall E<middot> Contact
#Pod::HTML2Pod conversion notes: #Pod::HTML2Pod conversion notes:
#From file ext_ffi_semantics.html #From file ext_ffi_semantics.html
# 53769 bytes of input # 53732 bytes of input
#Sat May 13 16:35:32 2017 agentzh #Mon May 14 13:19:16 2018 agentzh
# No a_name switch not specified, so will not try to render <a name='...'> # No a_name switch not specified, so will not try to render <a name='...'>
# No a_href switch not specified, so will not try to render <a href='...'> # No a_href switch not specified, so will not try to render <a href='...'>

@ -616,7 +616,7 @@ Copyright E<copy> 2005-2017 Mike Pall E<middot> Contact
#Pod::HTML2Pod conversion notes: #Pod::HTML2Pod conversion notes:
#From file ext_ffi_tutorial.html #From file ext_ffi_tutorial.html
# 22557 bytes of input # 22557 bytes of input
#Sat May 13 16:35:32 2017 agentzh #Mon May 14 13:19:16 2018 agentzh
# No a_name switch not specified, so will not try to render <a name='...'> # No a_name switch not specified, so will not try to render <a name='...'>
# No a_href switch not specified, so will not try to render <a href='...'> # No a_href switch not specified, so will not try to render <a href='...'>
# Deleting phrasal "code" element (`tt_100) because it has super-phrasal elements (`br_33, `br_34) as children. # Deleting phrasal "code" element (`tt_100) because it has super-phrasal elements (`br_33, `br_34) as children.

@ -175,7 +175,7 @@ Copyright E<copy> 2005-2017 Mike Pall E<middot> Contact
#Pod::HTML2Pod conversion notes: #Pod::HTML2Pod conversion notes:
#From file ext_jit.html #From file ext_jit.html
# 5903 bytes of input # 5903 bytes of input
#Sat May 13 16:35:32 2017 agentzh #Mon May 14 13:19:16 2018 agentzh
# No a_name switch not specified, so will not try to render <a name='...'> # No a_name switch not specified, so will not try to render <a name='...'>
# No a_href switch not specified, so will not try to render <a href='...'> # No a_href switch not specified, so will not try to render <a href='...'>
# Deleting phrasal "code" element (`tt_6) because it has super-phrasal elements (`br_2, `br_3) as children. # Deleting phrasal "code" element (`tt_6) because it has super-phrasal elements (`br_2, `br_3) as children.

@ -353,6 +353,6 @@ Copyright E<copy> 2005-2017 Mike Pall E<middot> Contact
#Pod::HTML2Pod conversion notes: #Pod::HTML2Pod conversion notes:
#From file ext_profiler.html #From file ext_profiler.html
# 13135 bytes of input # 13135 bytes of input
#Sat May 13 16:35:32 2017 agentzh #Mon May 14 13:19:16 2018 agentzh
# No a_name switch not specified, so will not try to render <a name='...'> # No a_name switch not specified, so will not try to render <a name='...'>
# No a_href switch not specified, so will not try to render <a href='...'> # No a_href switch not specified, so will not try to render <a href='...'>

@ -472,6 +472,6 @@ Copyright E<copy> 2005-2017 Mike Pall E<middot> Contact
#Pod::HTML2Pod conversion notes: #Pod::HTML2Pod conversion notes:
#From file extensions.html #From file extensions.html
# 17733 bytes of input # 17733 bytes of input
#Sat May 13 16:35:32 2017 agentzh #Mon May 14 13:19:16 2018 agentzh
# No a_name switch not specified, so will not try to render <a name='...'> # No a_name switch not specified, so will not try to render <a name='...'>
# No a_href switch not specified, so will not try to render <a href='...'> # No a_href switch not specified, so will not try to render <a href='...'>

@ -219,6 +219,6 @@ Copyright E<copy> 2005-2017 Mike Pall E<middot> Contact
#Pod::HTML2Pod conversion notes: #Pod::HTML2Pod conversion notes:
#From file faq.html #From file faq.html
# 7685 bytes of input # 7685 bytes of input
#Sat May 13 16:35:32 2017 agentzh #Mon May 14 13:19:16 2018 agentzh
# No a_name switch not specified, so will not try to render <a name='...'> # No a_name switch not specified, so will not try to render <a name='...'>
# No a_href switch not specified, so will not try to render <a href='...'> # No a_href switch not specified, so will not try to render <a href='...'>

@ -692,7 +692,7 @@ Copyright E<copy> 2005-2017 Mike Pall E<middot> Contact
#Pod::HTML2Pod conversion notes: #Pod::HTML2Pod conversion notes:
#From file install.html #From file install.html
# 25250 bytes of input # 25250 bytes of input
#Sat May 13 16:35:32 2017 agentzh #Mon May 14 13:19:16 2018 agentzh
# No a_name switch not specified, so will not try to render <a name='...'> # No a_name switch not specified, so will not try to render <a name='...'>
# No a_href switch not specified, so will not try to render <a href='...'> # No a_href switch not specified, so will not try to render <a href='...'>
# Deleting phrasal "a" element (`a_34) because it has super-phrasal elements (`br_16) as children. # Deleting phrasal "a" element (`a_34) because it has super-phrasal elements (`br_16) as children.

@ -416,6 +416,6 @@ Copyright E<copy> 2005-2017 Mike Pall E<middot> Contact
#Pod::HTML2Pod conversion notes: #Pod::HTML2Pod conversion notes:
#From file running.html #From file running.html
# 13720 bytes of input # 13720 bytes of input
#Sat May 13 16:35:32 2017 agentzh #Mon May 14 13:19:16 2018 agentzh
# No a_name switch not specified, so will not try to render <a name='...'> # No a_name switch not specified, so will not try to render <a name='...'>
# No a_href switch not specified, so will not try to render <a href='...'> # No a_href switch not specified, so will not try to render <a href='...'>

@ -108,6 +108,6 @@ Copyright E<copy> 2005-2017 Mike Pall E<middot> Contact
#Pod::HTML2Pod conversion notes: #Pod::HTML2Pod conversion notes:
#From file status.html #From file status.html
# 3931 bytes of input # 3931 bytes of input
#Sat May 13 16:35:32 2017 agentzh #Mon May 14 13:19:16 2018 agentzh
# No a_name switch not specified, so will not try to render <a name='...'> # No a_name switch not specified, so will not try to render <a name='...'>
# No a_href switch not specified, so will not try to render <a href='...'> # No a_href switch not specified, so will not try to render <a href='...'>

Loading…
Cancel
Save