| 69 | { |
| 70 | template <typename InArrayT> |
| 71 | void operator()(InArrayT* inArray, std::ostream& outStream) |
| 72 | { |
| 73 | using T = vtk::GetAPIType<InArrayT>; |
| 74 | const auto inRange = vtk::DataArrayValueRange(inArray); |
| 75 | std::copy(inRange.begin(), inRange.end(), std::ostream_iterator<T>(outStream, " ")); |
| 76 | } |
| 77 | }; |
| 78 | } |
| 79 |
nothing calls this directly
no test coverage detected