pub fn co_yield(state: &mut LuaState) -> Result<usize, LuaError>Expand description
coroutine.yield([...]) — suspend the running coroutine.
All arguments are passed back as results of the corresponding resume.
C: static int luaB_yield(lua_State *L)
→ return lua_yield(L, lua_gettop(L));
→ lua_yield(L,n) is lua_yieldk(L, n, 0, NULL) (lua.h:316)