| coroutine.yield |
|---|
| Lua function coroutine.yield Summary Yields execution of thread back to the caller Prototype args = coroutine.yield (v1, v2, ...)Description Yields execution back to the caller, effectively creating co-operative multi-tasking. Values supplied to yield are returned to coroutine.resume.See Also ... Topics
Lua base functions
Lua bc (big number) functions
Lua bit manipulation functions
Lua coroutine functions
Lua debug functions
Lua io functions
Lua math functions
Lua os functions
Lua package functions
Lua PCRE regular expression functions
Lua script extensions
Lua string functions
Lua table functions
Lua utilities
ScriptingLua functions
coroutine.create (Creates a new coroutine thread)
coroutine.resume (Start or resume a thread)
coroutine.running (Returns the running coroutine)
coroutine.status (Returns the status of a thread)
coroutine.wrap (Creates a thread and returns a function to resume it)(Help topic: lua=coroutine.yield)
Documentation contents page |