]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/math/matrices/matrices.factor
core: rename some words
[factor.git] / basis / math / matrices / matrices.factor
index 68dbd7c97dffe5b8288872eb365fa2322771d58b..c811027ec5dcf8db0e3705fef9477869adf2ab3e 100644 (file)
@@ -122,7 +122,7 @@ ALIAS: transpose flip
 
 : unshaped-cols-iota ( matrix -- cols-iota )
   [ first-unsafe length ] keep
-  [ length min ] 1 sequence-iterator-from each-integer-from <iota> ; inline
+  [ length min ] 1 each-from <iota> ; inline
 
 : generic-anti-transpose-unsafe ( cols-iota matrix -- newmatrix )
     [ <reversed> [ nth-end-unsafe ] with { } map-as ] curry { } map-as ; inline