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

Class MappedView

cpp/gdb_arrow.py:775–785  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

773
774
775class MappedView(Sequence):
776
777 def __init__(self, func, view):
778 self.view = view
779 self.func = func
780
781 def __len__(self):
782 return len(self.view)
783
784 def __getitem__(self, index):
785 return self.func(self.view[index])
786
787
788class StarMappedView(Sequence):

Callers 1

_values_viewMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected