On Tuesday, 26 January 2016 at 01:09:50 UTC, Igor wrote:
Is there any examples that shows how to properly allocate an object of a class type with the new allocators and then release it when desired?

Allocate a block of memory big enough to hold an instance of your class using whichever allocator you need, then instantiate a class instance with std.conv.emplace.

http://p0nce.github.io/d-idioms/#Placement-new-with-emplace

Reply via email to