The concrete DataTypeClass instance.
(self)
| 1559 | |
| 1560 | @property |
| 1561 | def type(self): |
| 1562 | """ |
| 1563 | The concrete DataTypeClass instance. |
| 1564 | """ |
| 1565 | concrete_type = gdb.lookup_type(f"arrow::{self.type_name}") |
| 1566 | return cast_to_concrete(deref(self.val['type']), concrete_type) |
| 1567 | |
| 1568 | def _format_contents(self): |
| 1569 | return (f"length {self.length}, " |
nothing calls this directly
no test coverage detected