Again people discuss the GC in D. -- Andrei
Well, but the non-GC D example someone provided did not look like good advertising vs C++ either:
alias Allocator = AllocatorList!(a => Region!Mallocator(1024 * 16), Mallocator);
//… Allocator allocator; auto c = Container!(int, typeof(&allocator))(&allocator);
