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 fb932287_ecc0_560e_25fd_011eb22cd495["walk_collect_parallel()"] 8031325b_dcd2_8c49_70e7_46191ce03a79["walk.rs"] fb932287_ecc0_560e_25fd_011eb22cd495 -->|defined in| 8031325b_dcd2_8c49_70e7_46191ce03a79 3c337f58_9743_cefc_9b9d_984193abd3d2["assert_paths()"] 3c337f58_9743_cefc_9b9d_984193abd3d2 -->|calls| fb932287_ecc0_560e_25fd_011eb22cd495 2567ce1d_17e1_b741_15ca_320dd88c9022["walk_collect_entries_parallel()"] fb932287_ecc0_560e_25fd_011eb22cd495 -->|calls| 2567ce1d_17e1_b741_15ca_320dd88c9022 934d114d_964b_414a_2b41_82e8174b7c3d["path()"] fb932287_ecc0_560e_25fd_011eb22cd495 -->|calls| 934d114d_964b_414a_2b41_82e8174b7c3d 9154c417_a5f7_3461_946b_605c083b3ec3["push()"] fb932287_ecc0_560e_25fd_011eb22cd495 -->|calls| 9154c417_a5f7_3461_946b_605c083b3ec3 d88a9d85_9d83_afcf_f958_2b91811bd8b0["normal_path()"] fb932287_ecc0_560e_25fd_011eb22cd495 -->|calls| d88a9d85_9d83_afcf_f958_2b91811bd8b0 style fb932287_ecc0_560e_25fd_011eb22cd495 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