pub type Integer = c_longlong;Expand description
Type of signed Lua integers.
Also known as lua_Integer.
The actual definition for this type depends on the use-32-bits feature.
If that feature is enabled, then
- if
c_intis big enough, then this isc_int, - otherwise, this is
c_long.
If the feature is not enabled, then this is c_longlong.