I admit I have no deep understanding of D at this point, my knowledge relies purely on what documentation I have read and examples I have tried; albeit both are difficult as good documentation is hard to find.
My question is thus, in C++ you could rely on the RAII idiom to call the destructor of objects you had defined on leaving their local scope. Can you in D?
I understand D is a garbage collected language, and that it also supports RAII. What I don't undestand, is why the following code does not cleanup the memory as it leaves a scope.
import std.stdio;
struct vector3b {
byte a, b, c;
};
void loop() {
printf("Loop");
loop();
}
void main() {
vector3b vec;
vec.a = 5;
vec.b = 6;
vec.c = 2;
vector3b pos = {0, 0, 1};
{
const int len = 1000 * 1000 * 750;
vector3b[] dynarray;
dynarray.length = len;
for (int i = 0; i < len; ++i) dynarray[i] = pos;
printf("%i", dynarray.length);
}
loop();
}
The loop was put there so as to keep the program open so I could watch my memory graph. A comparison of the same program set up in C++ (albeit, using a std::vector), is shown below.

Shortly after entering the loop, I would quit the program, but it can be seen that C++ immediately cleaned up the memory after allocation (as expected, however the refresh rate makes it appear as if less memory was allocated), whereas D kept it even though it had left scope.
Surely this could cause some gotchas? When does the GC cleanup?
PS: I was impressed that this operation took the same amount of time in C++ and D with appropriate flags.
EDIT:
The same problem occurs on this (non-dynamic) array.
{
const int len = 1000 * 1000 * 750;
vector3b[len] dynarray;
for (int i = 0; i < len; ++i) dynarray[i] = pos;
printf("%i", dynarray.length);
}