Is there a way to disable GC in D?I am aware of the @nogc qualifier but I would like to completely disable GC for the whole app/library.Regards Dibyendu
You should read the core.memory.GC section ( http://dlang.org/phobos/core_memory.html#.GC ), it is possible to have fine grained control over the GC if needed.