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

Function Equals

cpp/src/arrow/filesystem/filesystem.h:98–101  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96 bool IsDirectory() const { return type_ == FileType::Directory; }
97
98 bool Equals(const FileInfo& other) const {
99 return type() == other.type() && path() == other.path() && size() == other.size() &&
100 mtime() == other.mtime();
101 }
102
103 std::string ToString() const;
104

Callers

nothing calls this directly

Calls 6

mtimeFunction · 0.85
typeFunction · 0.70
sizeFunction · 0.70
typeMethod · 0.45
pathMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected