]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/math/functions/functions.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / basis / math / functions / functions.factor
index ce061ae4dc2b8f5293fae3dcd36f2e331a467d80..26c5bbfc50f2f50a9fe597416dc8ae38161599cc 100644 (file)
@@ -373,7 +373,7 @@ M: float round dup sgn 2 /f + truncate ;
 : roots ( x t -- seq )
     [ [ log ] [ recip ] bi* * e^ ]
     [ recip 2pi * 0 swap complex boa e^ ]
-    [ iota [ ^ * ] 2with map ] tri ;
+    [ <iota> [ ^ * ] 2with map ] tri ;
 
 : sigmoid ( x -- y ) neg e^ 1 + recip ; inline