Skip to content

Latest commit

 

History

History
65 lines (41 loc) · 1.51 KB

File metadata and controls

65 lines (41 loc) · 1.51 KB
title CDefaultHashTraits Class
ms.date 11/04/2016
f1_keywords
CDefaultHashTraits
ATLCOLL/ATL::CDefaultHashTraits
ATLCOLL/ATL::CDefaultHashTraits::Hash
helpviewer_keywords
CDefaultHashTraits class
ms.assetid d8ec4b37-6d58-447b-a0c1-8580c5b1ab85

CDefaultHashTraits Class

This class provides a static function for calculating hash values.

Syntax

template<typename T>
class CDefaultHashTraits

Parameters

T
The type of data to be stored in the collection.

Members

Public Methods

Name Description
CDefaultHashTraits::Hash (Static) Call this function to calculate a hash value for a given element.

Remarks

This class contains a single static function that returns a hash value for a given element. This class is utilized by the CDefaultElementTraits Class.

For more information, see ATL Collection Classes.

Requirements

Header: atlcoll.h

CDefaultHashTraits::Hash

Call this function to calculate a hash value for a given element.

static ULONG Hash(const T& element) throw();

Parameters

element
The element.

Return Value

Returns the hash value.

Remarks

The default hashing algorithm is very simple: the return value is the element number. Override this function if a more complicated algorithm is required.

See also

Class Overview