lean cpp library
A lean C++ library providing efficient utility classes for high-performance C++ applications.
|
Simple hash map element construction policy. More...
#include <simple_hash_map.h>
Static Public Attributes | |
static const bool | raw_move = RawMove |
Specifies whether memory containing constructed elements may be moved as a whole, without invoking the contained elements' copy or move constructors. | |
static const bool | no_destruct = NoDestruct |
Specifies whether memory containing constructed elements may be freed as a whole, without invoking the contained elements' destructors. | |
static const bool | raw_key_move = RawKeyMove |
Specifies whether memory containing constructed keys may be moved as a whole, without invoking the contained keys' copy or move constructors. | |
static const bool | no_key_destruct = NoKeyDestruct |
Specifies whether memory containing constructed keys may be freed as a whole, without invoking the contained keys' destructors. |
Simple hash map element construction policy.