1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-16 09:50:25 +00:00

Document hash-table-keys and hash-table-values'.

* doc/lispref/hash.texi (Other Hash): Document `hash-table-keys and
`hash-table-values'.
This commit is contained in:
Xue Fuqiao 2013-12-23 07:19:42 +08:00
parent 91dedc43f2
commit bb962da29a
3 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,7 @@
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

View File

@ -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

View File

@ -949,8 +949,11 @@ frame.
** 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`