The concrete DataTypeClass instance.
(self)
| 1254 | |
| 1255 | @property |
| 1256 | def type(self): |
| 1257 | """ |
| 1258 | The concrete DataTypeClass instance. |
| 1259 | """ |
| 1260 | concrete_type = gdb.lookup_type(f"arrow::{self.type_name}") |
| 1261 | return cast_to_concrete(deref(self.val['type']), |
| 1262 | concrete_type) |
| 1263 | |
| 1264 | def _format_type(self): |
| 1265 | return f"arrow::{self.name}" |
nothing calls this directly
no test coverage detected