Difference between revisions of "Spin"
From OpenEUO
m (→See Also) |
|||
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 == | ||
Line 8: | Line 25: | ||
* [[iterator]] | * [[iterator]] | ||
+ | |||
+ | * [[spin.hold]] | ||
+ | |||
+ | * [[spin.till]] | ||
* [[target]] | * [[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.