]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/math/bitwise/bitwise.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / basis / math / bitwise / bitwise.factor
index 658d3586e005c9b7cb20e33c2e21ad4b2aac8912..b5e3f3816c96b135b00ae8e86cafc16291eb9951 100644 (file)
@@ -83,7 +83,7 @@ DEFER: byte-bit-count
 <<
 
 \ byte-bit-count
-256 iota [
+256 <iota> [
     8 <bits> 0 [ [ 1 + ] when ] reduce
 ] B{ } map-as '[ 0xff bitand _ nth-unsafe ]
 ( byte -- table ) define-declared