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

Method __getitem__

cpp/gdb_arrow.py:560–564  ·  view source on GitHub ↗

Dereference the Field object at this index.

(self, index)

Source from the content-addressed store, hash-verified

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))]

Callers

nothing calls this directly

Calls 3

derefFunction · 0.85
FieldClass · 0.70
__getitem__Method · 0.45

Tested by

no test coverage detected