#include <runtime_type.h>
|
void | operator() (void *i_dest, const void *i_source) const |
|
Copy-initializes an instance of the target type in a user specified storage buffer. The target type must satisfy the requirements of CopyConstructible.
Creates an instance of this feature bound to the specified target type
void operator() |
( |
void * |
i_dest, |
|
|
const void * |
i_source |
|
) |
| const |
|
inline |
Copy-constructs in an uninitialized memory buffer an instance of the target type.
- Parameters
-
i_dest | where the target object must be constructed. Can't be null. If the buffer pointed by this parameter does not respect the size and alignment of the target type, the behavior is undefined. |
i_source | pointer to the source object. Can't be null. If the dynamic type of the pointed object is not the target type (assigned by the function make), the behavior is undefined. |
The documentation for this class was generated from the following file: