How can I create a unit32 value, from a list<uint8> ??? ...if its not a few lines of code..please point me in the right direction(other than the bitwise tutorials..)
It depends on how uint8 in the list form uint32. If for example the first element of the list corresponds to the highest byte of the uint32 then you can use std::accumulate. For example