]> gitweb.factorcode.org Git - factor.git/commitdiff
bit-sets: inline <bit-set>.
authorJohn Benediktsson <mrjbq7@gmail.com>
Sat, 29 Sep 2012 03:29:39 +0000 (20:29 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sat, 29 Sep 2012 03:29:39 +0000 (20:29 -0700)
basis/bit-sets/bit-sets.factor

index f0d366e7ed519f1ac177384fa5e8ac2c38d939b8..495180c094e46d7e5fc8b76e85282e778a709cc6 100644 (file)
@@ -7,7 +7,7 @@ IN: bit-sets
 TUPLE: bit-set { table bit-array read-only } ;
 
 : <bit-set> ( capacity -- bit-set )
-    <bit-array> bit-set boa ;
+    <bit-array> bit-set boa ; inline
 
 INSTANCE: bit-set set