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 802385f8_f025_d4fc_5a2f_45e3e67d119a["read_all_files()"] c89b240d_593b_77f4_98be_01fdb9aae54a["extract_candidates()"] c89b240d_593b_77f4_98be_01fdb9aae54a -->|calls| 802385f8_f025_d4fc_5a2f_45e3e67d119a style 802385f8_f025_d4fc_5a2f_45e3e67d119a 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
Called By
Source
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