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

Method path

cpp/src/arrow/ipc/dictionary.h:44–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42 FieldPosition child(int index) const { return {this, index}; }
43
44 std::vector<int> path() const {
45 std::vector<int> path(depth_);
46 const FieldPosition* cur = this;
47 for (int i = depth_ - 1; i >= 0; --i) {
48 path[i] = cur->index_;
49 cur = cur->parent_;
50 }
51 return path;
52 }
53
54 protected:
55 FieldPosition(const FieldPosition* parent, int index)

Callers 10

mkstempMethod · 0.45
ARROW_ASSIGN_OR_RAISEFunction · 0.45
TempFileMethod · 0.45
TempFileMethod · 0.45
SetUpMethod · 0.45
FieldFromFlatbufferFunction · 0.45
TempFileMethod · 0.45
TempFileMethod · 0.45
TESTFunction · 0.45
InsertPathMethod · 0.45

Calls

no outgoing calls

Tested by 7

mkstempMethod · 0.36
TempFileMethod · 0.36
TempFileMethod · 0.36
SetUpMethod · 0.36
TempFileMethod · 0.36
TempFileMethod · 0.36
TESTFunction · 0.36