| 443 | |
| 444 | template <typename... Elements> |
| 445 | std::string MakeArray(Elements... elements) { |
| 446 | std::vector<std::string> elements_as_strings = {std::to_string(elements)...}; |
| 447 | |
| 448 | std::vector<std::string_view> elements_as_views(sizeof...(Elements)); |
| 449 | std::copy(elements_as_strings.begin(), elements_as_strings.end(), |
| 450 | elements_as_views.begin()); |
| 451 | |
| 452 | return "[" + ::arrow::internal::JoinStrings(elements_as_views, ",") + "]"; |
| 453 | } |
| 454 | |
| 455 | template <typename T> |
| 456 | class TestBinaryArithmeticIntegral : public TestBinaryArithmetic<T> {}; |
no test coverage detected