From 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 7 Apr 2024 13:41:34 -0500 Subject: new repository --- devdocs/elisp/other-hash.html | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 devdocs/elisp/other-hash.html (limited to 'devdocs/elisp/other-hash.html') diff --git a/devdocs/elisp/other-hash.html b/devdocs/elisp/other-hash.html new file mode 100644 index 00000000..54874cbc --- /dev/null +++ b/devdocs/elisp/other-hash.html @@ -0,0 +1,22 @@ +

Other Hash Table Functions

Here are some other functions for working with hash tables.

Function: hash-table-p table +

This returns non-nil if table is a hash table object.

+
Function: copy-hash-table table +

This function creates and returns a copy of table. Only the table itself is copied—the keys and values are shared.

+
Function: hash-table-count table +

This function returns the actual number of entries in table.

+
Function: hash-table-test table +

This returns the test value that was given when table was created, to specify how to hash and compare keys. See make-hash-table (see Creating Hash).

+
Function: hash-table-weakness table +

This function returns the weak value that was specified for hash table table.

+
Function: hash-table-rehash-size table +

This returns the rehash size of table.

+
Function: hash-table-rehash-threshold table +

This returns the rehash threshold of table.

+
Function: hash-table-size table +

This returns the current nominal size of table.

+
+

+ Copyright © 1990-1996, 1998-2022 Free Software Foundation, Inc.
Licensed under the GNU GPL license.
+ https://www.gnu.org/software/emacs/manual/html_node/elisp/Other-Hash.html +

+
-- cgit v1.2.3