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

Function Equals

cpp/src/arrow/filesystem/filesystem.h:96–99  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

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