* doc/lispref/hash.texi (Other Hash): Document `hash-table-keys and
`hash-table-values'.
+2013-12-22 Xue Fuqiao <xfq.free@gmail.com>
+
+ * hash.texi (Other Hash): Document `hash-table-keys and `hash-table-values'.
+
2013-12-22 Eli Zaretskii <eliz@gnu.org>
* nonascii.texi (Character Properties): NAME or OLD-NAME
@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
** New macro with-eval-after-load. Like eval-after-load, but better behaved.
** New library subr-x.el for misc helper functions
++++
*** `hash-table-keys'
++++
*** `hash-table-values'
+
*** `string-blank-p`
*** `string-empty-p`
*** `string-join`