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