]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/persistent/hashtables/nodes/collision/collision.factor
Move make to its own vocabulary, remove fry _ feature
[factor.git] / basis / persistent / hashtables / nodes / collision / collision.factor
index 83003e5c47729e1b62feb649cd267ca0ef1555ef..741e3d067a94d048455a9a979351884ef4ef8c2f 100644 (file)
@@ -8,7 +8,7 @@ persistent.hashtables.nodes.leaf ;
 IN: persistent.hashtables.nodes.collision
 
 : find-index ( key hashcode collision-node -- n leaf-node )
-    leaves>> -rot '[ , , _ matching-key? ] find ; inline
+    leaves>> -rot '[ [ , , ] dip matching-key? ] find ; inline
 
 M:: collision-node (entry-at) ( key hashcode collision-node -- leaf-node )
     key hashcode collision-node find-index nip ;