2

質問はコードにあります:

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?
  }
};
4

1 に答える 1