]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/images/processing/processing.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / basis / images / processing / processing.factor
index 4d33f4c26021a26a89da311a342cdfe177028001..cebb6ec522e2536a7ab47d6ae17d79e21605b82c 100644 (file)
@@ -6,7 +6,7 @@ math.ranges math.vectors sequences sequences.deep fry ;
 IN: images.processing
 
 : coord-matrix ( dim -- m )
-    [ iota ] map first2 cartesian-product ;
+    [ <iota> ] map first2 cartesian-product ;
 
 : map^2 ( m quot -- m' ) '[ _ map ] map ; inline
 : each^2 ( m quot -- m' ) '[ _ each ] each ; inline