get_files() — tailwindcss Function Reference
Architecture documentation for the get_files() function in mod.rs from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD b2179bed_6f42_9ef3_2c2c_5d21cec8d65f["get_files()"] 0893876a_99f6_89ff_2ab7_5dcebb0e7e13["scan_sources()"] b2179bed_6f42_9ef3_2c2c_5d21cec8d65f -->|calls| 0893876a_99f6_89ff_2ab7_5dcebb0e7e13 style b2179bed_6f42_9ef3_2c2c_5d21cec8d65f fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
crates/oxide/src/scanner/mod.rs lines 355–362
pub fn get_files(&mut self) -> Vec<String> {
self.scan_sources();
self.files
.par_iter()
.filter_map(|x| x.clone().into_os_string().into_string().ok())
.collect()
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does get_files() do?
get_files() is a function in the tailwindcss codebase.
What does get_files() call?
get_files() calls 1 function(s): scan_sources.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free