mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 22:32:46 +00:00
ce377110d8
Differential Revision: https://phabricator.services.mozilla.com/D165625
22 lines
533 B
ReStructuredText
22 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.
|