| 4 | namespace testsuite { |
| 5 | |
| 6 | std::vector<std::string> TestArray::testStringArray(const std::vector<std::string>& a) { |
| 7 | return {a.rbegin(), a.rend()}; |
| 8 | } |
| 9 | |
| 10 | std::vector<int32_t> TestArray::testIntArray(const std::vector<int32_t>& a) { |
| 11 | return {a.rbegin(), a.rend()}; |