| 211 | |
| 212 | public: |
| 213 | std::shared_ptr<Array> Generate(uint64_t count, double null_prob) { |
| 214 | return generator_.ArrayOf(type_, count, null_prob); |
| 215 | } |
| 216 | |
| 217 | std::shared_ptr<Int32Array> Offsets(int32_t length, int32_t slice_count) { |
| 218 | return arrow::internal::checked_pointer_cast<Int32Array>( |
no test coverage detected