| 251 | return 1; |
| 252 | } |
| 253 | static int Sign(lua_State* L)LNOEXCEPT |
| 254 | { |
| 255 | fcyRandomWELL512* p = static_cast<fcyRandomWELL512*>(luaL_checkudata(L, 1, TYPENAME_RANDGEN)); |
| 256 | lua_pushinteger(L, p->GetRandUInt(1) * 2 - 1); |
| 257 | return 1; |
| 258 | } |
| 259 | static int Meta_ToString(lua_State* L)LNOEXCEPT |
| 260 | { |
| 261 | fcyRandomWELL512* p = static_cast<fcyRandomWELL512*>(luaL_checkudata(L, 1, TYPENAME_RANDGEN)); |
nothing calls this directly
no outgoing calls
no test coverage detected