GM6000 Digital Heater Controller Branch: main
SDX-1330
Hash.h
Go to the documentation of this file.
1#ifndef Cpl_Container_Hash_h_
2#define Cpl_Container_Hash_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15///
16namespace Cpl {
17///
18namespace Container {
19
20/** This type defines the function signature for the hashing function that operates
21 on a key stored in contiguous RAM.
22 */
23typedef unsigned int ( *HashFunc )( const void* keystart, unsigned keylen, unsigned int maxBuckets );
24
25
26/** This struct defines what usage/stats can be retrieved from a Hash table
27 */
29{
30 ///
31 unsigned long m_numItems;
32 ///
33 unsigned int m_numBuckets;
34 ///
35 unsigned int m_numEmptyBuckets;
36 ///
37 double m_average_itemsPerBucket;
38 ///
39 unsigned long m_max_itemsPerBucket;
40};
41
42}; // end namespaces
43};
44#endif // end header latch
unsigned int(* HashFunc)(const void *keystart, unsigned keylen, unsigned int maxBuckets)
This type defines the function signature for the hashing function that operates on a key stored in co...
Definition Hash.h:23
This struct defines what usage/stats can be retrieved from a Hash table.
Definition Hash.h:29
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20