I have a dynamic 3d array of numbers and currently I'm doing it like I usually would in C:
for (auto i = 0; i < size; i++) {
for (auto j = 0; j < size; j++) {
for (auto k = 0; k < size; k++) {
...
}
}
}
Looks pretty ugly. Is there a shorter and maybe more "elegant" way of doing this in D?