comparison lispref/hash.texi @ 56215:c9aa4127a482

Reposition @anchor's.
author Luc Teirlinck <teirllm@auburn.edu>
date Wed, 23 Jun 2004 16:40:04 +0000
parents 41fd82e27495
children d1e57e5b8403 59dcbfe97385
comparison
equal deleted inserted replaced
56214:169058aadeda 56215:c9aa4127a482
203 @b{Common Lisp note:} In Common Lisp, @code{clrhash} returns the empty 203 @b{Common Lisp note:} In Common Lisp, @code{clrhash} returns the empty
204 @var{table}. In Emacs Lisp, it returns @code{nil}. 204 @var{table}. In Emacs Lisp, it returns @code{nil}.
205 @end defun 205 @end defun
206 206
207 @tindex maphash 207 @tindex maphash
208 @defun maphash function table
208 @anchor{Definition of maphash} 209 @anchor{Definition of maphash}
209 @defun maphash function table
210 This function calls @var{function} once for each of the associations in 210 This function calls @var{function} once for each of the associations in
211 @var{table}. The function @var{function} should accept two 211 @var{table}. The function @var{function} should accept two
212 arguments---a @var{key} listed in @var{table}, and its associated 212 arguments---a @var{key} listed in @var{table}, and its associated
213 @var{value}. 213 @var{value}.
214 @end defun 214 @end defun