(self, index, type_id=None)
| 1571 | f"{format_null_count(self.val['null_count'])}") |
| 1572 | |
| 1573 | def _buffer(self, index, type_id=None): |
| 1574 | buffers = StdVector(self.val['buffers']) |
| 1575 | bufptr = SharedPtr(buffers[index]).get() |
| 1576 | if int(bufptr) == 0: |
| 1577 | return None |
| 1578 | if type_id is not None: |
| 1579 | return TypedBuffer.from_type_id(bufptr.dereference(), type_id) |
| 1580 | else: |
| 1581 | return Buffer(bufptr.dereference()) |
| 1582 | |
| 1583 | def _buffer_values(self, index, type_id, length=None): |
| 1584 | """ |
no test coverage detected