]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/math/splines/viewer/viewer.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / math / splines / viewer / viewer.factor
index 523c927b885831f0f7d9b31d87e2d0af21d1a4d2..59c347d740f17f6e41da46bdb1e0b7c5369da628 100644 (file)
@@ -8,7 +8,7 @@ IN: math.splines.viewer
 <PRIVATE
 : eval-polynomials ( polynomials-seq n -- xy-sequence )
     [
-        [ 1 + iota ] keep [
+        [ 1 + <iota> ] keep [
             /f swap [ polyval ] with map
         ] curry with map
     ] curry map concat ;