is_same_file_system() — tailwindcss Function Reference
Architecture documentation for the is_same_file_system() function in walk.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 323d2214_125d_bfac_858a_23adef8704e5["is_same_file_system()"] b45a46b8_860c_ff76_cb65_b3f199252429["walk.rs"] 323d2214_125d_bfac_858a_23adef8704e5 -->|defined in| b45a46b8_860c_ff76_cb65_b3f199252429 b2c7c7e0_22d1_2323_e0dd_fcb7213a274b["run_one()"] b2c7c7e0_22d1_2323_e0dd_fcb7213a274b -->|calls| 323d2214_125d_bfac_858a_23adef8704e5 430c6fff_1f86_d1c1_941d_6249d6ee4c75["device_num()"] 323d2214_125d_bfac_858a_23adef8704e5 -->|calls| 430c6fff_1f86_d1c1_941d_6249d6ee4c75 style 323d2214_125d_bfac_858a_23adef8704e5 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/ignore/src/walk.rs lines 2008–2011
fn is_same_file_system(root_device: u64, path: &Path) -> Result<bool, Error> {
let dent_device = device_num(path).map_err(|err| Error::Io(err).with_path(path))?;
Ok(root_device == dent_device)
}
Domain
Subdomains
Defined In
Calls
Called By
Source
Frequently Asked Questions
What does is_same_file_system() do?
is_same_file_system() is a function in the tailwindcss codebase, defined in crates/ignore/src/walk.rs.
Where is is_same_file_system() defined?
is_same_file_system() is defined in crates/ignore/src/walk.rs at line 2008.
What does is_same_file_system() call?
is_same_file_system() calls 1 function(s): device_num.
What calls is_same_file_system()?
is_same_file_system() is called by 1 function(s): run_one.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free