GM6000 Digital Heater Controller Branch: main
SDX-1330
HashFuncDefault.h
Go to the documentation of this file.
1#ifndef Cpl_Container_HashFuncDefault_h_
2#define Cpl_Container_HashFuncDefault_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
16///
17namespace Cpl {
18///
19namespace Container {
20
21/** Default hash function.
22 This one comes from 'Compiler Design in C', by Allen I. Holub,
23 PRENTICE HALL, ISBN 0-13-155045-4
24 */
25unsigned int hashFuncDefault( const void* keystart, unsigned keylen, unsigned int maxBuckets ) noexcept;
26
27
28}; // end namespaces
29};
30#endif // end header latch
unsigned int hashFuncDefault(const void *keystart, unsigned keylen, unsigned int maxBuckets) noexcept
Default hash function.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20