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:
parent
91dedc43f2
commit
bb962da29a
3 changed files with 18 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
3
etc/NEWS
3
etc/NEWS
|
@ -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`
|
||||
|
|
Loading…
Add table
Reference in a new issue