[serialization] How should I lay down bits?
My class contains an array of bits, currently expressed as
boost::array
Daryle Walker wrote:
My class contains an array of bits, currently expressed as boost::array
. Will archives compact representations to multiple bits per serialized atom, or will they potentially waste a lot of space?
The latter. I think you may want std::bitset<512>. -- Dave Abrahams BoostPro Computing http://www.boostpro.com
participants (2)
-
Daryle Walker
-
David Abrahams