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 900bf189_45c7_1d02_5a54_338ff13e9f9b["is_same_file_system()"] e63c9a61_c0eb_fc8e_2a92_ab9b1af2a4db["run_one()"] e63c9a61_c0eb_fc8e_2a92_ab9b1af2a4db -->|calls| 900bf189_45c7_1d02_5a54_338ff13e9f9b ea878296_643d_a792_237f_e683d50eeb36["device_num()"] 900bf189_45c7_1d02_5a54_338ff13e9f9b -->|calls| ea878296_643d_a792_237f_e683d50eeb36 style 900bf189_45c7_1d02_5a54_338ff13e9f9b 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
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.
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