问题在代码中:
template<typename... Ts>
struct TupleOfVectorsOfVectors {
std::tuple<std::vector<std::vector<Ts>>...> tuple;
TupleOfVectorsOfVectors () {
//Here we already have a tuple of empty vectors.
//Question: How can I loop through those vectors
//and push_back into each of them an empty vector?
}
};