]> git.eshelyaron.com Git - emacs.git/commitdiff
(Hash Tables): Note that alists win for small tables.
authorDave Love <fx@gnu.org>
Sun, 5 Dec 1999 12:21:20 +0000 (12:21 +0000)
committerDave Love <fx@gnu.org>
Sun, 5 Dec 1999 12:21:20 +0000 (12:21 +0000)
lispref/hash.texi

index e497123b6c0ff89cf6cb64eea8a55698c10c7348..e20b67b430a766cdb30af8cee5260ec8346bf558 100644 (file)
@@ -13,9 +13,11 @@ from an alist in these ways:
 
 @itemize @bullet
 @item
-Lookup in a hash table is extremely fast---in fact, the time required
-is essentially @emph{independent} of how many elements are stored
-in the table.
+Lookup in a hash table is extremely fast for large tables---in fact, the
+time required is essentially @emph{independent} of how many elements are
+stored in the table.  For smaller tables (a few tens of elements)
+alists may still be faster because hash tables have a more-or-less
+constant overhead.
 
 @item
 The correspondences in a hash table are in no particular order.