hi i would like to know how to insert boost::array into containers such as vectors, list, etc, in an effective and easy way.. tuples don't work cause you can't get to random access index. Thanks.
 
AES word example.
typedef boost::array<int, 4> word;

std::vector vecOfWord;
 
// perform some word insertion.