Home / Function/ is_same_file_system() — tailwindcss Function Reference

is_same_file_system() — tailwindcss Function Reference

Architecture documentation for the is_same_file_system() function in walk.rs from the tailwindcss codebase.

Function rust Oxide Extractor calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  845aad20_2657_11d4_b218_5244fcd955d2["is_same_file_system()"]
  8031325b_dcd2_8c49_70e7_46191ce03a79["walk.rs"]
  845aad20_2657_11d4_b218_5244fcd955d2 -->|defined in| 8031325b_dcd2_8c49_70e7_46191ce03a79
  04e8d630_da3f_f0a4_57a8_0bd018070b1a["run_one()"]
  04e8d630_da3f_f0a4_57a8_0bd018070b1a -->|calls| 845aad20_2657_11d4_b218_5244fcd955d2
  d0501a6b_ca09_95d9_bdd1_41bccd62ac1b["device_num()"]
  845aad20_2657_11d4_b218_5244fcd955d2 -->|calls| d0501a6b_ca09_95d9_bdd1_41bccd62ac1b
  style 845aad20_2657_11d4_b218_5244fcd955d2 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

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