| 103 | } |
| 104 | |
| 105 | Status SwapChildren(const FieldVector& child_fields) { |
| 106 | for (size_t i = 0; i < child_fields.size(); i++) { |
| 107 | ARROW_ASSIGN_OR_RAISE(out_->child_data[i], |
| 108 | internal::SwapEndianArrayData(data_->child_data[i], pool_)); |
| 109 | } |
| 110 | return Status::OK(); |
| 111 | } |
| 112 | |
| 113 | template <typename T> |
| 114 | Result<std::shared_ptr<Buffer>> ByteSwapBuffer( |
nothing calls this directly
no test coverage detected