Luna::construct_type
void construct_type(typeinfo_t type, void *data)
Constructs one instance of the specified type.
The construction is performed as follows:1. If type
is a trivially constructable type, fills the memory with zeros.
-
If
type
is a non-trivially-constructable type with user defined constructor function, calls the function. -
If
type
is a non-trivially-constructable type without user defined constructor function, constructs every property of the structure recursively.
Parameters
-
in type
The type object.
-
in data
The pointer to the instance.
Valid Usage
-
type
must specify one valid type object and cannot be a generic structure type. -
data
must specify one valid memory address.