pub fn lua_yieldk(
state: &mut LuaState,
nresults: i32,
ctx: isize,
k: Option<LuaKFunction>,
) -> Result<i32, LuaError>Expand description
Yields the current coroutine, saving the continuation function k and
context ctx for resumption.