tomaka / hlua

Rust library to interface with Lua
MIT License
507 stars 48 forks source link

Handle multiple return values #129

Closed jonas-schievink closed 7 years ago

jonas-schievink commented 7 years ago

Closes #128

tomaka commented 7 years ago

It's not as simple (otherwise I would have implemented it immediately when writing the code). Reading multiple integers is fine, but reading multiple values that each take a mutable reference to the Lua object (like LuaTable) would totally break the library.

jonas-schievink commented 7 years ago

Yeah, I think I don't yet know enough about hlua's design.