Home / Function/ read_all_files() — tailwindcss Function Reference

read_all_files() — tailwindcss Function Reference

Architecture documentation for the read_all_files() function in mod.rs from the tailwindcss codebase.

Entity Profile

Dependency Diagram

graph TD
  7687f3c0_3840_868f_9b32_f85bd015fe14["read_all_files()"]
  e14107a2_1bdc_7eeb_cfd3_5f70e1726e22["extract_candidates()"]
  e14107a2_1bdc_7eeb_cfd3_5f70e1726e22 -->|calls| 7687f3c0_3840_868f_9b32_f85bd015fe14
  style 7687f3c0_3840_868f_9b32_f85bd015fe14 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

crates/oxide/src/scanner/mod.rs lines 501–512

fn read_all_files(changed_content: Vec<ChangedContent>) -> Vec<Vec<u8>> {
    event!(
        tracing::Level::INFO,
        "Reading {:?} file(s)",
        changed_content.len()
    );

    changed_content
        .into_par_iter()
        .filter_map(read_changed_content)
        .collect()
}

Domain

Subdomains

Frequently Asked Questions

What does read_all_files() do?
read_all_files() is a function in the tailwindcss codebase.
What calls read_all_files()?
read_all_files() is called by 1 function(s): extract_candidates.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free