Constructs a value object of type T using args as the parameter list for the constructor of T and returns a pointer to the new object.
Object type.
Types of the arguments to the constructor of T.
Allocator.
Constructor arguments of T.
Pointer to the created object.
Precondition: allocator !is null
int* i = defaultAllocator.make!int(5); assert(*i == 5); defaultAllocator.dispose(i);
See Implementation
Constructs a value object of type T using args as the parameter list for the constructor of T and returns a pointer to the new object.