Allocate and construct an object of the specified type.
struct S { bool ok = false; bool notOk = true; } Mallocator alloc; S* p = alloc.make!S(true, false); scope(exit) alloc.dispose(p); assert(p.ok); assert(!p.notOk);
Allocate and construct an object of the specified type.