(self)
| 1413 | """ |
| 1414 | |
| 1415 | def to_string(self): |
| 1416 | size = self.type['byte_width_'] |
| 1417 | bufptr = BufferPtr(SharedPtr(self.val['value']).get()) |
| 1418 | if bufptr.data is None: |
| 1419 | return f"{self._format_type()} of size {size}, <unallocated>" |
| 1420 | nullness = '' if self.is_valid else 'null with ' |
| 1421 | return (f"{self._format_type()} of size {size}, " |
| 1422 | f"{nullness}value {self._format_buf(bufptr)}") |
| 1423 | |
| 1424 | |
| 1425 | class DictionaryScalarPrinter(ScalarPrinter): |
nothing calls this directly
no test coverage detected