]> gitweb.factorcode.org Git - factor.git/blobdiff - core/hashtables/hashtables.factor
Revert "hash-sets,hashtables: make it so the array backing the hash is non-empty"
[factor.git] / core / hashtables / hashtables.factor
index 33d0c3ace93c37964e5d6666d55da1092b3edf1b..d7763428d7c8db2a9eb8bdd31e56879e0dc79680 100644 (file)
@@ -4,16 +4,10 @@ USING: accessors arrays assocs kernel kernel.private math
 math.private sequences sequences.private slots.private vectors ;
 IN: hashtables
 
-! Required because the hashtable definition references tombstone.
-<PRIVATE PRIVATE>
-
 TUPLE: hashtable
     { count array-capacity }
     { deleted array-capacity }
-    { array array initial: {
-          T{ tombstone } T{ tombstone } T{ tombstone } T{ tombstone }
-      }
-    } ;
+    { array array } ;
 
 <PRIVATE