MCPcopy Create free account
hub / github.com/apache/arrow / children

Method children

cpp/gdb_arrow.py:1640–1649  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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
1652class BooleanArrayDataPrinter(NumericArrayDataPrinter):

Callers

nothing calls this directly

Calls 4

_values_viewMethod · 0.95
_null_bitmapMethod · 0.80
_valid_childMethod · 0.80
_null_childMethod · 0.80

Tested by

no test coverage detected