Difference between revisions of "Spin"

From OpenEUO
Jump to: navigation, search
m (See Also)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
''spin object implemented, but undocumented''
+
== 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]]

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.

See Also