Difference between revisions of "Coroutine.create"
From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>") |
|||
(7 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
+ | '''Class:''' [[coroutine]]<br/> | ||
+ | |||
=== Description === | === Description === | ||
− | + | Creates a new coroutine, with body f. f must be a Lua function. | |
− | < | + | <syntaxhighlight lang="lua"> |
− | ( | + | (thread) = coroutine.create(f) |
− | </ | + | </syntaxhighlight> |
+ | |||
=== Parameters === | === Parameters === | ||
− | '''f''': (function) | + | '''f''': (function) Lua function<br/> |
+ | |||
=== Return values === | === Return values === | ||
− | '''Returns''' ( | + | '''Returns''' (thread) created coroutine<br/> |
+ | |||
+ | {{Coroutine}} |
Latest revision as of 14:26, 13 July 2023
Available since: Gideros 2011.6
Class: coroutine
Description
Creates a new coroutine, with body f. f must be a Lua function.
(thread) = coroutine.create(f)
Parameters
f: (function) Lua function
Return values
Returns (thread) created coroutine