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