Function eql [src]
Prototype
pub fn eql(self: Path, other: Path) bool
Parameters
self: Path
other: Path
Source
pub fn eql(self: Path, other: Path) bool {
return self.root_dir.eql(other.root_dir) and std.mem.eql(u8, self.sub_path, other.sub_path);
}