| 13 | } |
| 14 | |
| 15 | int main() |
| 16 | { |
| 17 | const size_t numArrays{ 10 }; // Fill 10 Arrays with 1,000 strings each |
| 18 | const size_t numStringsPerArray{ 1000 }; |
| 19 | |
| 20 | std::vector<Array<std::string>> vectorOfArrays; |
| 21 | vectorOfArrays.reserve(numArrays); // Inform the vector<> how many Arrays we'll be adding |
| 22 | |
| 23 | for (size_t i {}; i < numArrays; ++i) |
| 24 | { |
| 25 | vectorOfArrays.push_back(buildStringArray(numStringsPerArray)); |
| 26 | } |
| 27 | } |
nothing calls this directly
no test coverage detected