Do you use D's GC?

Walter Bright newshound2 at digitalmars.com
Tue Aug 3 19:30:47 UTC 2021


There's some good replies here.

When I write high performance code, I use a mix of manual and GC allocation. 
Stuff that's critical for performance or recycling memory, I use manual. For not 
critical stuff, like setup and configuration code, I use the GC because it's so 
much more convenient.


More information about the Digitalmars-d mailing list