is_dir() — tailwindcss Function Reference
Architecture documentation for the is_dir() function in walk.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 375b58d9_a2fe_75bb_3a9f_2f5574c0532f["is_dir()"] 80ab0f00_c359_5714_9ef3_3d3b7412e1d6["is_dir()"] 80ab0f00_c359_5714_9ef3_3d3b7412e1d6 -->|calls| 375b58d9_a2fe_75bb_3a9f_2f5574c0532f c24afe17_12df_aa9c_86e8_061c9291f1b1["is_dir()"] c24afe17_12df_aa9c_86e8_061c9291f1b1 -->|calls| 375b58d9_a2fe_75bb_3a9f_2f5574c0532f 365169b4_4aeb_e5a8_2cbf_612384e629cc["skip_entry()"] 365169b4_4aeb_e5a8_2cbf_612384e629cc -->|calls| 375b58d9_a2fe_75bb_3a9f_2f5574c0532f 3e24cbbb_d0d2_be5b_ec36_1f076cc42d7f["next()"] 3e24cbbb_d0d2_be5b_ec36_1f076cc42d7f -->|calls| 375b58d9_a2fe_75bb_3a9f_2f5574c0532f 63344b28_9b99_e315_b3dc_2e05147fb824["walkdir_is_dir()"] 63344b28_9b99_e315_b3dc_2e05147fb824 -->|calls| 375b58d9_a2fe_75bb_3a9f_2f5574c0532f 95b107ae_d4d2_5303_7db9_2b4373c1db2e["same_file_system()"] 95b107ae_d4d2_5303_7db9_2b4373c1db2e -->|calls| 375b58d9_a2fe_75bb_3a9f_2f5574c0532f 71e93def_7a6f_7fac_bfd6_1619a991cc7c["no_read_permissions()"] 71e93def_7a6f_7fac_bfd6_1619a991cc7c -->|calls| 375b58d9_a2fe_75bb_3a9f_2f5574c0532f 29b1fc36_4cad_f0a0_a75c_9d0516d59243["file_type()"] 375b58d9_a2fe_75bb_3a9f_2f5574c0532f -->|calls| 29b1fc36_4cad_f0a0_a75c_9d0516d59243 80ab0f00_c359_5714_9ef3_3d3b7412e1d6["is_dir()"] 375b58d9_a2fe_75bb_3a9f_2f5574c0532f -->|calls| 80ab0f00_c359_5714_9ef3_3d3b7412e1d6 style 375b58d9_a2fe_75bb_3a9f_2f5574c0532f fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/ignore/src/walk.rs lines 236–238
fn is_dir(&self) -> bool {
self.file_type().map(|ft| ft.is_dir()).unwrap_or(false)
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does is_dir() do?
is_dir() is a function in the tailwindcss codebase.
What does is_dir() call?
is_dir() calls 2 function(s): file_type, is_dir.
What calls is_dir()?
is_dir() is called by 7 function(s): is_dir, is_dir, next, no_read_permissions, same_file_system, skip_entry, walkdir_is_dir.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free