Having a vector of vector with a fixed size,
vector > v(10);
I would like to initialize it so that it has in all e
This doesn't use boost::assign but does what you need:
boost::assign
vector> v(10, vector(10,1));
This creates a vector containing 10 vectors of int, each containing 10 ints.
int
ints