Hello all,

I have a 2d vector like this:

vector<vector<DWORD> > bits = vector<vector<DWORD> >(100, vector<DWORD>(100));

I would like to, in code, convert this vector to 1d like this:

vector<DWORD> 1dBits;

How is the fastest and best way to accomplish this? Example code appreciated.

Regards,
Ellay K.