| 142 | |
| 143 | template <typename T> |
| 144 | enable_if_t<std::is_base_of<FixedWidthType, T>::value && |
| 145 | !std::is_base_of<FixedSizeBinaryType, T>::value && |
| 146 | !std::is_base_of<DictionaryType, T>::value, |
| 147 | Status> |
| 148 | Visit(const T& type) { |
| 149 | using value_type = typename T::c_type; |
| 150 | ARROW_ASSIGN_OR_RAISE(out_->buffers[1], |
| 151 | ByteSwapBuffer<value_type>(data_->buffers[1])); |
| 152 | return Status::OK(); |
| 153 | } |
| 154 | |
| 155 | template <typename T> |
| 156 | enable_if_decimal<T, Status> Visit(const T& type) { |
nothing calls this directly
no test coverage detected