| 304 | } |
| 305 | |
| 306 | Status AppendArraySlice(const ArraySpan& array, int64_t offset, |
| 307 | int64_t length) override { |
| 308 | return AppendValues(array.GetValues<value_type>(1) + offset, length, |
| 309 | array.GetValues<uint8_t>(0, 0), array.offset + offset); |
| 310 | } |
| 311 | |
| 312 | /// Append a single scalar under the assumption that the underlying Buffer is |
| 313 | /// large enough. |
nothing calls this directly
no test coverage detected