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

Class FieldVector

cpp/gdb_arrow.py:558–568  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

556
557
558class FieldVector(StdVector):
559
560 def __getitem__(self, index):
561 """
562 Dereference the Field object at this index.
563 """
564 return Field(deref(super().__getitem__(index)))
565
566 def __str__(self):
567 l = [str(self[i]) for i in range(len(self))]
568 return "{" + ", ".join(l) + "}"
569
570
571class Field:

Callers 3

__init__Method · 0.85
fieldsMethod · 0.85
to_stringMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected