| 77 | const std::shared_ptr<Array>& dictionary); |
| 78 | |
| 79 | static Result<std::shared_ptr<Array>> FromArrays( |
| 80 | const std::shared_ptr<Array>& indices, const std::shared_ptr<Array>& dictionary) { |
| 81 | return FromArrays(::arrow::dictionary(indices->type(), dictionary->type()), indices, |
| 82 | dictionary); |
| 83 | } |
| 84 | |
| 85 | /// \brief Transpose this DictionaryArray |
| 86 | /// |