Difference between revisions of "Spin"
From OpenEUO
					
										
					
					| m | |||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
| − | + | == Calling Pattern == | |
| + | Call | ||
| + |  local r = sl.spin(expr[, arg[, ...]]) | ||
| + | Args | ||
| + |  expr is a function returning any type | ||
| + |  arg0..argN (optional) are of any type (typically functions) | ||
| + | Results | ||
| + |  r     is a spin closure | ||
| + | |||
| + | == Closure Methods == | ||
| + | |||
| + | * [[spin.hold]] | ||
| + | |||
| + | * [[spin.till]] | ||
| + | |||
| + | == Description == | ||
| + | |||
| + | See [[spin.hold|hold]] or [[spin.till|till]] for a description of the operation of this object. | ||
| == See Also == | == See Also == | ||
| * [http://www.easyuo.com/openeuo/wiki/index.php/Simplelib simplelib] | * [http://www.easyuo.com/openeuo/wiki/index.php/Simplelib simplelib] | ||
| + | |||
| + | * [[case]] | ||
| + | |||
| + | * [[iterator]] | ||
| + | |||
| + | * [[spin.hold]] | ||
| + | |||
| + | * [[spin.till]] | ||
| + | |||
| + | * [[target]] | ||
Latest revision as of 19:56, 24 November 2010
Calling Pattern
Call
local r = sl.spin(expr[, arg[, ...]])
Args
expr is a function returning any type arg0..argN (optional) are of any type (typically functions)
Results
r is a spin closure
Closure Methods
Description
See hold or till for a description of the operation of this object.
