]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/persistent/hashtables/nodes/bitmap/bitmap.factor
factor: more using trim
[factor.git] / basis / persistent / hashtables / nodes / bitmap / bitmap.factor
index 38e16fe6b41027ada009a64cc9c9f0bcb173a094..8586bd42d20774dab96c2adb95032c231d667020 100644 (file)
@@ -1,10 +1,8 @@
 ! Based on Clojure's PersistentHashMap by Rich Hickey.
 
-USING: math math.bitwise arrays kernel accessors locals sequences
-sequences.private
-persistent.sequences
-persistent.hashtables.config
-persistent.hashtables.nodes ;
+USING: accessors kernel math math.bitwise
+persistent.hashtables.config persistent.hashtables.nodes
+persistent.sequences sequences sequences.private ;
 IN: persistent.hashtables.nodes.bitmap
 
 : index ( bit bitmap -- n ) [ 1 - ] dip bitand bit-count ; inline