1
0
Fork 0
firefox/docs/nspr/reference/plhashtable.rst
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

21 lines
533 B
ReStructuredText

Syntax
------
.. code::
#include <plhash.h>
typedef struct PLHashTable PLHashTable;
Description
-----------
The opaque ``PLHashTable`` structure represents a hash table. Entries in
the table have the type ``PLHashEntry`` and are organized into buckets.
The number of buckets in a hash table may be changed by the library
functions during the lifetime of the table to optimize speed and space.
A new hash table is created by the :ref:`PL_NewHashTable` function, and
destroyed by the :ref:`PL_HashTableDestroy` function.