rlua 0.19.0 released! #242
jugglerchris
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
[0.19.0]
hand-maintained declarations. (Thanks @pollend!) The "builtin-lua51" feature
is now available.
there is no integer type).
Function::dump()
which produces the compiled version of a function (likethe
string.dump
Lua function orlua_dump()
C API).Chunk::into_function_allow_binary()
. This allows loading a compiledbinary generated from
Function::dump()
.Initflags
to control some settings done whenLua
is initialised. Theycan be specified with the new unsafe
Lua::unsafe_new_with_flags()
constructor.The flags available (all set by default with the other constructors):
loading compiled/bytecode modules.
package.loadlib
and the module finding functions which allow loadingcompiled C libraries.
String<'lua>
now implementsEq
andHash
(can be useful for local collectionswithin a context callback).
Beta Was this translation helpful? Give feedback.
All reactions