walk_collect_parallel() — tailwindcss Function Reference
Architecture documentation for the walk_collect_parallel() function in walk.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD b2c4a323_8d1e_5ad8_e078_9ff6f9a27db9["walk_collect_parallel()"] b3ca296d_790b_9bf3_23ea_56e5c5c48565["walk.rs"] b2c4a323_8d1e_5ad8_e078_9ff6f9a27db9 -->|defined in| b3ca296d_790b_9bf3_23ea_56e5c5c48565 9df16f40_0af0_7013_ce71_ae30d02a8d20["assert_paths()"] 9df16f40_0af0_7013_ce71_ae30d02a8d20 -->|calls| b2c4a323_8d1e_5ad8_e078_9ff6f9a27db9 890ecca7_6d92_2d53_1020_7e8daec08fb8["walk_collect_entries_parallel()"] b2c4a323_8d1e_5ad8_e078_9ff6f9a27db9 -->|calls| 890ecca7_6d92_2d53_1020_7e8daec08fb8 eaa93251_8ff2_5e1b_adef_2cb61588bdb0["path()"] b2c4a323_8d1e_5ad8_e078_9ff6f9a27db9 -->|calls| eaa93251_8ff2_5e1b_adef_2cb61588bdb0 ae599a85_0c60_15e1_b5ae_270bd089125f["push()"] b2c4a323_8d1e_5ad8_e078_9ff6f9a27db9 -->|calls| ae599a85_0c60_15e1_b5ae_270bd089125f 063ca569_8059_e2ae_4819_c33cf4c60f59["normal_path()"] b2c4a323_8d1e_5ad8_e078_9ff6f9a27db9 -->|calls| 063ca569_8059_e2ae_4819_c33cf4c60f59 style b2c4a323_8d1e_5ad8_e078_9ff6f9a27db9 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/ignore/src/walk.rs lines 2092–2103
fn walk_collect_parallel(prefix: &Path, builder: &WalkBuilder) -> Vec<String> {
let mut paths = vec![];
for dent in walk_collect_entries_parallel(builder) {
let path = dent.path().strip_prefix(prefix).unwrap();
if path.as_os_str().is_empty() {
continue;
}
paths.push(normal_path(path.to_str().unwrap()));
}
paths.sort();
paths
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does walk_collect_parallel() do?
walk_collect_parallel() is a function in the tailwindcss codebase, defined in crates/ignore/src/walk.rs.
Where is walk_collect_parallel() defined?
walk_collect_parallel() is defined in crates/ignore/src/walk.rs at line 2092.
What does walk_collect_parallel() call?
walk_collect_parallel() calls 4 function(s): normal_path, path, push, walk_collect_entries_parallel.
What calls walk_collect_parallel()?
walk_collect_parallel() is called by 1 function(s): assert_paths.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free