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

Method Join

cpp/src/arrow/util/io_util.cc:611–617  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

609}
610
611PlatformFilename PlatformFilename::Join(const PlatformFilename& child) const {
612 if (impl_->native_.empty() || impl_->native_.back() == kNativeSep) {
613 return PlatformFilename(Impl{impl_->native_ + child.impl_->native_});
614 } else {
615 return PlatformFilename(Impl{impl_->native_ + kNativeSep + child.impl_->native_});
616 }
617}
618
619Result<PlatformFilename> PlatformFilename::Join(std::string_view child_name) const {
620 ARROW_ASSIGN_OR_RAISE(auto child,

Callers 9

ARROW_ASSIGN_OR_RAISEFunction · 0.45
TESTFunction · 0.45
StatSelectorFunction · 0.45
NextMethod · 0.45
MakeMethod · 0.45
TESTFunction · 0.45
DeleteDirTreeInternalFunction · 0.45
MakeMethod · 0.45

Calls 3

JoinFunction · 0.85
backMethod · 0.80
emptyMethod · 0.45

Tested by 5

ARROW_ASSIGN_OR_RAISEFunction · 0.36
TESTFunction · 0.36
MakeMethod · 0.36
TESTFunction · 0.36