Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/apache/arrow
/ operator[]
Method
operator[]
cpp/src/arrow/stl_iterator.h:70–73 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
68
}
69
70
value_type operator[](difference_type n) const {
71
assert(array_);
72
return array_->IsNull(index_ + n) ? value_type{} : array_->GetView(index_ + n);
73
}
74
75
int64_t index() const { return index_; }
76
Callers
nothing calls this directly
Calls
2
IsNull
Method · 0.45
GetView
Method · 0.45
Tested by
no test coverage detected