|
lean cpp library
A lean C++ library providing efficient utility classes for high-performance C++ applications.
|
Simple vector element construction policy. More...
#include <simple_vector.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 | no_construct = NoConstruct |
| Specifies whether memory needs to be initialized by constructing elements. | |
Simple vector element construction policy.
1.7.6.1