We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lua文档: lua_Number typedef double lua_Number; lua源码: #define LUA_NUMBER long double
在代码中看到了这个注释: -- converters[0x08] = tonumber -- long long
请问注释的原因,是因为 lua语言5.3以前的版本不能完整支持64比特位数字导致的吗?如果不是,那具体是什么原因?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
lua文档:
lua_Number
typedef double lua_Number;
lua源码:
#define LUA_NUMBER long double
在代码中看到了这个注释:
-- converters[0x08] = tonumber -- long long
请问注释的原因,是因为 lua语言5.3以前的版本不能完整支持64比特位数字导致的吗?如果不是,那具体是什么原因?
The text was updated successfully, but these errors were encountered: