]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/cocoa/enumeration/enumeration.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / basis / cocoa / enumeration / enumeration.factor
index a78a29bd7ff1f079c0bac0f40a95249024aedbe6..4f5a69697a97d00e69c6d3c418db42ee4f71e77b 100644 (file)
@@ -20,7 +20,7 @@ CONSTANT: NS-EACH-BUFFER-SIZE 16
     object state stackbuf count -> countByEnumeratingWithState:objects:count: :> items-count
     items-count 0 = [
         state itemsPtr>> [ items-count id <c-direct-array> ] [ stackbuf ] if* :> items
-        items-count iota [ items nth quot call ] each
+        items-count <iota> [ items nth quot call ] each
         object quot state stackbuf count (NSFastEnumeration-each)
     ] unless ; inline recursive