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 ea3d2543_290a_4ab1_26e1_d83a2eb2bbd8["walk_collect_parallel()"] 5fe9aa4d_d793_b1a2_d187_4991d92c8d6e["assert_paths()"] 5fe9aa4d_d793_b1a2_d187_4991d92c8d6e -->|calls| ea3d2543_290a_4ab1_26e1_d83a2eb2bbd8 c613414e_67b0_e781_3a9b_4a45208ea7ad["walk_collect_entries_parallel()"] ea3d2543_290a_4ab1_26e1_d83a2eb2bbd8 -->|calls| c613414e_67b0_e781_3a9b_4a45208ea7ad 2fcdc00d_9979_79c1_5408_d697c67c1905["push()"] ea3d2543_290a_4ab1_26e1_d83a2eb2bbd8 -->|calls| 2fcdc00d_9979_79c1_5408_d697c67c1905 9d066ad9_ea6a_6b73_8a07_beba8961e765["normal_path()"] ea3d2543_290a_4ab1_26e1_d83a2eb2bbd8 -->|calls| 9d066ad9_ea6a_6b73_8a07_beba8961e765 afe9c39f_a243_0367_bdf6_a556fadd6383["path()"] ea3d2543_290a_4ab1_26e1_d83a2eb2bbd8 -->|calls| afe9c39f_a243_0367_bdf6_a556fadd6383 style ea3d2543_290a_4ab1_26e1_d83a2eb2bbd8 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
Called By
Source
Frequently Asked Questions
What does walk_collect_parallel() do?
walk_collect_parallel() is a function in the tailwindcss codebase.
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