Show
Ignore:
Timestamp:
01/21/08 16:21:29 (10 months ago)
Author:
krobillard
Message:

Iter/each can now take skip value on stack. Each.set works again.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/doc/UserManual

    r499 r503  
    365365iter      (ser body -- )             Iterate over series. 
    366366iter/N    (ser body -- )             Iterate over series with skip. 
     367each      (ser body -- )             Iterate over series elements. 
     368each/N    (ser body -- )             Iterate over series elements with skip. 
    367369proc      (body -- proc)             Create procedure. 
    368370func      (sig body -- func)         Create function with local values. 
     
    388390Word      Stack Usage                Function 
    389391========  =========================  ============================ 
    390 each      (ser body -- )             Iterate over series and take first element. 
    391392each.set  (ser words body -- )       Iterate over series and assign elements. 
    392393while     (body cond -- )            Evaluate body while cond is true.