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:65–68 ·
view source on GitHub ↗
Value access
Source
from the content-addressed store, hash-verified
63
64
// Value access
65
value_type operator*() const {
66
assert(array_);
67
return array_->IsNull(index_) ? value_type{} : array_->GetView(index_);
68
}
69
70
value_type operator[](difference_type n) const {
71
assert(array_);
Callers
nothing calls this directly
Calls
2
IsNull
Method · 0.45
GetView
Method · 0.45
Tested by
no test coverage detected