On Tuesday, 8 March 2016 at 21:32:28 UTC, Andrei Alexandrescu wrote:
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);


Reply via email to