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

Class StarMappedView

cpp/gdb_arrow.py:788–798  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

786
787
788class StarMappedView(Sequence):
789
790 def __init__(self, func, view):
791 self.view = view
792 self.func = func
793
794 def __len__(self):
795 return len(self.view)
796
797 def __getitem__(self, index):
798 return self.func(*self.view[index])
799
800
801class NullBitmap(Bitmap):

Callers 2

_values_viewMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected