Subject: [Boost-users] Copying Boost.Array initialization code
From: Torri, Stephen CIV NSWCDD, W15 (stephen.torri_at_[hidden])
Date: 2010-12-23 11:28:50


I am looking for the code that enables me to do the following with Boost.Array:
 
boost::array<unsigned int,16> tmp = { { 4, 4, 4, 4, 3, 3, 3, 3, 2, 2, 2, 2, 1, 1, 1, 1 } };
 
I would like to learn how to do this. I have need to easily initialize a 4x4 grid with data.
 
Stephen