]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/bitstreams/bitstreams.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / basis / bitstreams / bitstreams.factor
index f7cb3708610ef9697f9e46229e64bcee53049df1..ee6ad00e83ebd2cb255ef181d401a5a27474df00 100644 (file)
@@ -181,7 +181,7 @@ M: msb0-bit-reader peek ( n bs -- bits )
     writer bytes>> ;
 
 :: byte-array-n>sequence ( byte-array n -- seq )
-    byte-array length 8 * n / iota
+    byte-array length 8 * n / <iota>
     byte-array <msb0-bit-reader> '[
         drop n _ read
     ] { } map-as ;