Home / Function/ walk_collect_parallel() — tailwindcss Function Reference

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
  5baffb89_3552_88eb_f38c_51215b162072["walk_collect_parallel()"]
  03f45cf3_87f6_e91f_bef8_2f9380aab005["assert_paths()"]
  03f45cf3_87f6_e91f_bef8_2f9380aab005 -->|calls| 5baffb89_3552_88eb_f38c_51215b162072
  9bac3eb8_6b71_2637_705d_37b38f0878b4["walk_collect_entries_parallel()"]
  5baffb89_3552_88eb_f38c_51215b162072 -->|calls| 9bac3eb8_6b71_2637_705d_37b38f0878b4
  e16c7a27_1865_9055_554b_f50df737dd8e["push()"]
  5baffb89_3552_88eb_f38c_51215b162072 -->|calls| e16c7a27_1865_9055_554b_f50df737dd8e
  a9a36b56_7e94_7ba9_cb03_f0a329430fd9["normal_path()"]
  5baffb89_3552_88eb_f38c_51215b162072 -->|calls| a9a36b56_7e94_7ba9_cb03_f0a329430fd9
  5a41a98a_774e_c950_dcbd_cc7fe1960b89["path()"]
  5baffb89_3552_88eb_f38c_51215b162072 -->|calls| 5a41a98a_774e_c950_dcbd_cc7fe1960b89
  style 5baffb89_3552_88eb_f38c_51215b162072 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
    }

Subdomains

Called By

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