]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/sequences/generalizations/generalizations.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / basis / sequences / generalizations / generalizations.factor
index d0feb06063598015d1e299c1cf8ebf47ae767d88..e15796c9b5825bbce7eee4a7d3755190a8733c2f 100644 (file)
@@ -22,7 +22,7 @@ MACRO: firstn ( n -- quot )
 
 MACRO: set-firstn-unsafe ( n -- quot )
     [ 1 + ]
-    [ iota [ '[ _ rot [ set-nth-unsafe ] keep ] ] map ] bi
+    [ <iota> [ '[ _ rot [ set-nth-unsafe ] keep ] ] map ] bi
     '[ _ -nrot _ spread drop ] ;
 
 MACRO: set-firstn ( n -- quot )