Difference between revisions of "Coroutine.create"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
<languages />
+
'''Available since:''' Gideros 2011.6<br/>
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
+
'''Class:''' [[coroutine]]<br/>
'''<translate>Class</translate>:''' [[Special:MyLanguage/coroutine|coroutine]]<br/>
 
  
=== <translate>Description</translate> ===
+
=== Description ===
<translate>Creates a new coroutine, with body f. f must be a Lua function. Returns this new coroutine, an object with type "thread".</translate>
+
Creates a new coroutine, with body f. f must be a Lua function.
<source lang="lua">
+
<syntaxhighlight lang="lua">
(coroutine) = coroutine.create(f)
+
(thread) = coroutine.create(f)
</source>
+
</syntaxhighlight>
  
=== <translate>Parameters</translate> ===
+
=== Parameters ===
'''f''': (function) <translate>lua function</translate> <br/>
+
'''f''': (function) Lua function<br/>
  
=== <translate>Return values</translate> ===
+
=== Return values ===
'''<translate>Returns</translate>''' (coroutine) <translate>created coroutine</translate><br/>
+
'''Returns''' (thread) created coroutine<br/>
  
 
{{Coroutine}}
 
{{Coroutine}}

Latest revision as of 15: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