(self)
| 1566 | return cast_to_concrete(deref(self.val['type']), concrete_type) |
| 1567 | |
| 1568 | def _format_contents(self): |
| 1569 | return (f"length {self.length}, " |
| 1570 | f"offset {self.offset}, " |
| 1571 | f"{format_null_count(self.val['null_count'])}") |
| 1572 | |
| 1573 | def _buffer(self, index, type_id=None): |
| 1574 | buffers = StdVector(self.val['buffers']) |
no test coverage detected