]> code.delx.au - gnu-emacs/blobdiff - doc/lispref/hash.texi
Proper help support for EIEIO classes and methods.
[gnu-emacs] / doc / lispref / hash.texi
index 655f31ab11447b31dc3fe682d3d2fc75cc35e1bb..5d0d6b6c89e2829ca5667a82a49f14d4c115668b 100644 (file)
@@ -1,6 +1,6 @@
 @c -*-texinfo-*-
 @c This is part of the GNU Emacs Lisp Reference Manual.
-@c Copyright (C) 1999, 2001-2013 Free Software Foundation, Inc.
+@c Copyright (C) 1999, 2001-2014 Free Software Foundation, Inc.
 @c See the file elisp.texi for copying conditions.
 @node Hash Tables
 @chapter Hash Tables
@@ -353,3 +353,14 @@ This returns the rehash threshold of @var{table}.
 @defun hash-table-size table
 This returns the current nominal size of @var{table}.
 @end defun
+
+The following two functions are provided by the @file{subr-x} library.
+To use them, you need to load this library first.
+
+@defun hash-table-keys hash-table
+This returns a list of keys in @var{hash-table}.
+@end defun
+
+@defun hash-table-values hash-table
+This returns a list of values in @var{hash-table}.
+@end defun