--- srfi-modules.texi.~1.18.~ 2003-06-05 01:47:08.000000000 +1000 +++ srfi-modules.texi 2003-07-06 11:53:08.000000000 +1000 @@ -220,12 +220,17 @@ @end deffn @deffn {Scheme Procedure} iota count [start step] -Return a list containing @var{count} elements, where each element is -calculated as follows: +Return a list containing @var{count} numbers, starting from address@hidden and adding @var{step} each time. The default @var{start} +is 0, the default @var{step} is 1. For example, address@hidden + (@var{count} - 1) * @var{step} address@hidden +(iota 6) @result{} (0 1 2 3 4 5) +(iota 4 2.5 -2) @result{} (2.5 0.5 -1.5 -3.5) address@hidden example address@hidden defaults to 0 and @var{step} defaults to 1. +This function takes its name from the corresponding primitive in the +APL language. @end deffn