comparison lispref/hash.texi @ 90116:29e773288013

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-23 Merge from emacs--cvs-trunk--0 Patches applied: * miles@gnu.org--gnu-2005/emacs--cvs-trunk--0 (patch 150-165) - Update from CVS - Merge from gnus--rel--5.10 - Add info/dir to arch branch * miles@gnu.org--gnu-2005/gnus--rel--5.10 (patch 34-37) - Merge from emacs--cvs-trunk--0 - Update from CVS
author Miles Bader <miles@gnu.org>
date Wed, 09 Mar 2005 00:09:34 +0000
parents 7e3f621f1dd4 b26c30e5d770
children 2d92f5c9d6ae
comparison
equal deleted inserted replaced
90115:fb290921b93c 90116:29e773288013
25 @item 25 @item
26 There is no way to share structure between two hash tables, 26 There is no way to share structure between two hash tables,
27 the way two alists can share a common tail. 27 the way two alists can share a common tail.
28 @end itemize 28 @end itemize
29 29
30 Emacs Lisp (starting with Emacs 21) provides a general-purpose hash 30 Emacs Lisp provides a general-purpose hash table data type, along
31 table data type, along with a series of functions for operating on them. 31 with a series of functions for operating on them. Hash tables have no
32 Hash tables have no read syntax, and print in hash notation, like this: 32 read syntax, and print in hash notation, like this:
33 33
34 @example 34 @example
35 (make-hash-table) 35 (make-hash-table)
36 @result{} #<hash-table 'eql nil 0/65 0x83af980> 36 @result{} #<hash-table 'eql nil 0/65 0x83af980>
37 @end example 37 @end example