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 e704cff7_c70b_699c_502e_17660411a27d["read_all_files()"] b82a42d6_b7d3_c6d2_1e14_451f8382da81["mod.rs"] e704cff7_c70b_699c_502e_17660411a27d -->|defined in| b82a42d6_b7d3_c6d2_1e14_451f8382da81 a3631bf8_302f_3c65_1542_da5537cb94cb["extract_candidates()"] a3631bf8_302f_3c65_1542_da5537cb94cb -->|calls| e704cff7_c70b_699c_502e_17660411a27d style e704cff7_c70b_699c_502e_17660411a27d 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
Defined In
Called By
Source
Frequently Asked Questions
What does read_all_files() do?
read_all_files() is a function in the tailwindcss codebase, defined in crates/oxide/src/scanner/mod.rs.
Where is read_all_files() defined?
read_all_files() is defined in crates/oxide/src/scanner/mod.rs at line 501.
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