hash_map::allocator_type

Note

This API is obsolete. The alternative is unordered_map Class.

A type that represents the allocator class for the hash_map object.

typedef list<typename Traits::value_type, typename Traits::allocator_type>::allocator_type allocator_type;

Remark

allocator_type is a synonym for the Allocator template parameter.

In Visual C++ .NET 2003, members of the <hash_map> and <hash_set> header files are no longer in the std namespace, but rather have been moved into the stdext namespace. See The stdext Namespace for more information.

Example

See example for get_allocator for an example using allocator_type.

Requirements

Header: <hash_map>

Namespace: stdext

See Also

Reference

hash_map Class

Standard Template Library