(self)
| 1860 | yield str(i), printer._format_contents() |
| 1861 | |
| 1862 | def to_string(self): |
| 1863 | ty = deref(self.val['type_']) |
| 1864 | return (f"{self.name} of type {ty}, length {self.val['length_']}, " |
| 1865 | f"{format_null_count(self.val['null_count_'])} " |
| 1866 | f"with {len(self.chunks)} chunks") |
| 1867 | |
| 1868 | |
| 1869 | class DataTypeClass: |
nothing calls this directly
no test coverage detected