in C++ we can specify the bitwidth in the declaration.
So we can optimaze memory usage.

unsigned int x    : 30;
unsigned int type :  2;

How can we do that in D?

°Matthias

Reply via email to