(self)
| 1638 | return "array" |
| 1639 | |
| 1640 | def children(self): |
| 1641 | if self.length == 0: |
| 1642 | return |
| 1643 | values = self._values_view() |
| 1644 | null_bits = self._null_bitmap() |
| 1645 | for i, (valid, value) in enumerate(zip(null_bits, values)): |
| 1646 | if valid: |
| 1647 | yield self._valid_child(i, str(value)) |
| 1648 | else: |
| 1649 | yield self._null_child(i) |
| 1650 | |
| 1651 | |
| 1652 | class BooleanArrayDataPrinter(NumericArrayDataPrinter): |
nothing calls this directly
no test coverage detected