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

Method children

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

Source from the content-addressed store, hash-verified

1457 return 'map'
1458
1459 def children(self):
1460 if not self.is_valid:
1461 return None
1462 eval_fields = StdVector(self.type['children_'])
1463 eval_values = StdVector(self.val['value'])
1464 for field, value in zip(eval_fields, eval_values):
1465 name = StdString(deref(field)['name_']).string_literal()
1466 yield ("name", name)
1467 yield ("value", deref(value))
1468
1469 def to_string(self):
1470 if not self.is_valid:

Callers

nothing calls this directly

Calls 4

StdVectorClass · 0.85
StdStringClass · 0.85
derefFunction · 0.85
string_literalMethod · 0.45

Tested by

no test coverage detected