
11 Dec
2006
11 Dec
'06
5:10 p.m.
On Fri, 24 Nov 2006, Mathias Gaunard wrote:
typedef boost::array
word; std::vector vecOfWord;
std::vector<word> vecOfWord;
// perform some word insertion.
You could do this, for example. word w = {1, 2, 3, 4};
vecOfWord.push_back(w);
I have often encountered a similar situation, which led me to think that maybe we should have the equivalent of make_tuple for boost::arrays, e.g. make_array. Example: vecOfWord.push_back( make_array( 1 , 2 , 3 , 4 ) ) ; -- François Duranleau LIGUM, Université de Montréal