| 954 | } |
| 955 | |
| 956 | std::shared_ptr<Array> RandomArrayGenerator::LargeListView( |
| 957 | const Array& values, int64_t length, double null_probability, bool force_empty_nulls, |
| 958 | double coverage, int64_t alignment, MemoryPool* memory_pool) { |
| 959 | return *RandomListView<LargeListViewArray>(*this, values, length, null_probability, |
| 960 | force_empty_nulls, coverage, alignment, |
| 961 | memory_pool); |
| 962 | } |
| 963 | |
| 964 | std::shared_ptr<Array> RandomArrayGenerator::Map(const std::shared_ptr<Array>& keys, |
| 965 | const std::shared_ptr<Array>& items, |
no outgoing calls